mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-18 09:29:05 -07:00
10 lines
198 B
CMake
10 lines
198 B
CMake
if (SLIC3R_STATIC)
|
|
set(CGAL_Boost_USE_STATIC_LIBS ON)
|
|
endif ()
|
|
|
|
find_package(CGAL REQUIRED)
|
|
|
|
add_executable(meshboolean MeshBoolean.cpp)
|
|
|
|
target_link_libraries(meshboolean libslic3r CGAL::CGAL)
|