File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -146,6 +146,8 @@ endif()
146146
147147# enable Edit and Continue in Visual Studio (for debugging)
148148if (MSVC )
149- target_compile_options (${PROJECT_NAME} INTERFACE "/ZI" )
150- target_link_options (${PROJECT_NAME} INTERFACE "/INCREMENTAL" )
149+ if (CMAKE_BUILD_TYPE STREQUAL "Debug" )
150+ target_compile_options (${PROJECT_NAME} INTERFACE "/ZI" )
151+ target_link_options (${PROJECT_NAME} INTERFACE "/INCREMENTAL" )
152+ endif ()
151153endif ()
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ include( shacl_FetchContent )
88
99shacl_FetchContent_Declare( tools
1010 GIT_REPOSITORY ../../njoy/tools
11- GIT_TAG 902cf189f7a28012945577a9f77180a516e0e978 # tag: v0.4.3
11+ GIT_TAG 22bae7709d012914f32c99c0fb7aab06f49c5f62 # tag: v0.4.3
1212 )
1313
1414#######################################################################
Original file line number Diff line number Diff line change 11if (ACEtk.python)
22
3+ find_package ( Python3 REQUIRED )
34 pybind11_add_module( ACEtk.python
45 ${CMAKE_CURRENT_SOURCE_DIR} /src/ACEtk.python.cpp
56 ${CMAKE_CURRENT_SOURCE_DIR} /src/XsdirEntry.python.cpp
You can’t perform that action at this time.
0 commit comments