# 1. Define module igl_add_library(igl_copyleft_cgal) # 2. Include headers include(GNUInstallDirs) target_include_directories(igl_copyleft_cgal ${IGL_SCOPE} $ $ ) # 3. Target sources file(GLOB INC_FILES "${libigl_SOURCE_DIR}/include/igl/copyleft/cgal/*.h") file(GLOB SRC_FILES "${libigl_SOURCE_DIR}/include/igl/copyleft/cgal/*.cpp") igl_target_sources(igl_copyleft_cgal ${INC_FILES} ${SRC_FILES}) # 4. Dependencies include(cgal) igl_include(copyleft core) target_link_libraries(igl_copyleft_cgal ${IGL_SCOPE} igl::core igl_copyleft::core CGAL::CGAL CGAL::CGAL_Core ) # 5. Unit tests file(GLOB SRC_FILES "${libigl_SOURCE_DIR}/tests/include/igl/copyleft/boolean/*.cpp" "${libigl_SOURCE_DIR}/tests/include/igl/copyleft/cgal/*.cpp" ) igl_add_test(igl_copyleft_cgal ${SRC_FILES}) if(TARGET test_igl_copyleft_cgal) igl_copy_dll(test_igl_copyleft_cgal) endif()