CMakeLists.txt 425 B

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