Open
Description
scapix
does not use the same C++ standard version of the project when the version is set with CMAKE_CXX_STANDARD
. The following snippet is what I use to set the compiler C++ version.
set(CMAKE_CXX_STANDARD 20)
The issue can be fixed by setting the compiler version with the following snippet.
target_compile_features(<target> PUBLIC cxx_std_20)
In my opinion, scapix
should recognize the compiler version when is set with CMAKE_CXX_STANDARD
.
Metadata
Metadata
Assignees
Labels
No labels