CMakeLists.txt 281 B

123456
  1. file(GLOB TEST_SRC_FILES *.cpp main.cpp)
  2. file(GLOB TEST_INC_FILES *.h *.inl)
  3. add_executable(igl_comiso_tests ${TEST_SRC_FILES} ${TEST_INC_FILES})
  4. target_link_libraries(igl_comiso_tests igl::core igl::comiso gtest_main)
  5. add_test(NAME run_igl_comiso_tests COMMAND igl_comiso_tests)