2018-09-19 09:02:24 +00:00
|
|
|
project(clipper)
|
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
|
|
|
|
add_library(clipper STATIC
|
2021-04-21 18:15:49 +00:00
|
|
|
# We are using ClipperLib compiled as part of the libslic3r project using Slic3r::Point as its base type.
|
|
|
|
# clipper.cpp
|
|
|
|
# clipper.hpp
|
2019-09-13 14:16:37 +00:00
|
|
|
clipper_z.cpp
|
|
|
|
clipper_z.hpp
|
2018-09-19 09:02:24 +00:00
|
|
|
)
|
2020-05-20 14:28:46 +00:00
|
|
|
|
|
|
|
if(SLIC3R_PROFILE)
|
|
|
|
target_link_libraries(clipper Shiny)
|
|
|
|
endif()
|