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
# julia-bindings (placed before compiler detection)option(enable-julia-bindings "enable julia bindings support"OFF)
if(enable-julia-bindings)
# The current version (0.16.0) of CxxWrap overrides the# CMAKE_CXX_STANDARD variables, so we reset it after# calling find_package to the current version set(_CMAKE_CXX_STANDARD "${CMAKE_CXX_STANDARD}")
find_package(JlCxx REQUIRED)
set(CMAKE_CXX_STANDARD "${_CMAKE_CXX_STANDARD}")
endif(enable-julia-bindings)
The text was updated successfully, but these errors were encountered:
JlCxxConfig.cmake
setsCMAKE_CXX_STANDARD
to17
which makes it incompatible with project using newer standards (in my case theMFrontGenericInterfaceSupport
: https://github.com/thelfer/MFrontGenericInterfaceSupport/)One workaround is to do this ugly hack:
The text was updated successfully, but these errors were encountered: