CMakeLists.txt 312 B

1234567
  1. # Check if CGAL is available
  2. file(GLOB TEST_SRC_FILES *.cpp main.cpp)
  3. file(GLOB TEST_INC_FILES *.h *.inl)
  4. add_executable(igl_boolean_tests ${TEST_SRC_FILES} ${TEST_INC_FILES})
  5. target_link_libraries(igl_boolean_tests igl::core igl::cgal gtest_main)
  6. add_test(NAME run_igl_boolean_tests COMMAND igl_boolean_tests)