Tell cmake to build those tests...

This commit is contained in:
Marc Glisse 2021-02-15 21:29:17 +01:00
parent 82fa63d720
commit bf2940de3d
1 changed files with 10 additions and 3 deletions

View File

@ -18,13 +18,20 @@ find_package(CGAL REQUIRED)
find_package(Eigen3) find_package(Eigen3)
include(CGAL_Eigen3_support) include(CGAL_Eigen3_support)
if(TARGET CGAL::Eigen3_support) if(TARGET CGAL::Eigen3_support)
create_single_source_cgal_program("Epick_d.cpp") file(
target_link_libraries(Epick_d PUBLIC CGAL::Eigen3_support) GLOB cppfiles
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
foreach(cppfile ${cppfiles})
get_filename_component(target ${cppfile} NAME_WE)
create_single_source_cgal_program("${cppfile}")
target_link_libraries(${target} PUBLIC CGAL::Eigen3_support)
endforeach()
else() else()
message( message(
STATUS STATUS
"NOTICE: This program requires the Eigen3 library, and will not be compiled." "NOTICE: These programs require the Eigen3 library, and will not be compiled."
) )
endif() endif()