You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
scapix
does not use the same C++ standard version of the project when the version is set withCMAKE_CXX_STANDARD
. The following snippet is what I use to set the compiler C++ version.The issue can be fixed by setting the compiler version with the following snippet.
In my opinion,
scapix
should recognize the compiler version when is set withCMAKE_CXX_STANDARD
.The text was updated successfully, but these errors were encountered: