CMakeLists.txt 257 B

12345678910111213
  1. if (SLIC3R_STATIC)
  2. set(CGAL_Boost_USE_STATIC_LIBS ON)
  3. endif ()
  4. find_package(CGAL REQUIRED)
  5. add_executable(meshboolean MeshBoolean.cpp)
  6. target_link_libraries(meshboolean libslic3r CGAL::CGAL)
  7. if (WIN32)
  8. prusaslicer_copy_dlls(meshboolean)
  9. endif()