Skip to content
Snippets Groups Projects
Commit bfd623af authored by Ian Bell's avatar Ian Bell
Browse files

Yet another try to fix heap issues

parent 485e23a3
No related branches found
No related tags found
No related merge requests found
...@@ -109,6 +109,9 @@ if (NOT TEQP_NO_PYTHON) ...@@ -109,6 +109,9 @@ if (NOT TEQP_NO_PYTHON)
pybind11_add_module(teqp "${pybind11_files}") pybind11_add_module(teqp "${pybind11_files}")
target_include_directories(teqp PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/externals/pybind11_json/include") target_include_directories(teqp PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/externals/pybind11_json/include")
target_link_libraries(teqp PRIVATE autodiff PRIVATE teqpinterface) target_link_libraries(teqp PRIVATE autodiff PRIVATE teqpinterface)
if (MSVC)
target_compile_options(teqp PRIVATE "/Zm10")
endif()
endif() endif()
file(GLOB catch_tests_files "${CMAKE_CURRENT_SOURCE_DIR}/src/tests/*.cxx") file(GLOB catch_tests_files "${CMAKE_CURRENT_SOURCE_DIR}/src/tests/*.cxx")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment