CMakeLists.txt 441 B

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