CMakeLists.txt 405 B

12345678910111213
  1. add_executable(auslegung_test
  2. test_ModuleHTTP
  3. test_ModuleMath.cpp
  4. test_ModuleSQL.cpp
  5. test_ModuleSwitch.cpp
  6. test_OptimizerEvolutionary.cpp
  7. test_ProcessorStandard.cpp
  8. )
  9. target_link_libraries(auslegung_test gtest gtest_main ${PROJECT_NAME})
  10. if(WIN32)
  11. target_compile_options(auslegung_test PRIVATE /bigobj)
  12. endif(WIN32)
  13. add_test(auslegung_test auslegung_test)