2019-12-10 14:10:39 +00:00
|
|
|
if (SLIC3R_STATIC)
|
|
|
|
set(CGAL_Boost_USE_STATIC_LIBS ON)
|
|
|
|
endif ()
|
2019-12-09 14:34:48 +00:00
|
|
|
|
|
|
|
find_package(CGAL REQUIRED)
|
2019-12-10 14:10:39 +00:00
|
|
|
|
2019-12-09 14:34:48 +00:00
|
|
|
add_executable(meshboolean MeshBoolean.cpp)
|
|
|
|
|
2019-12-10 14:10:39 +00:00
|
|
|
target_link_libraries(meshboolean libslic3r CGAL::CGAL)
|
2019-12-10 16:42:25 +00:00
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
prusaslicer_copy_dlls(meshboolean)
|
|
|
|
endif()
|