Files
OrcaSlicer-bambulab/src/clipper/CMakeLists.txt
T

15 lines
328 B
CMake
Raw Normal View History

project(clipper)
cmake_minimum_required(VERSION 2.6)
add_library(clipper STATIC
# We are using ClipperLib compiled as part of the libslic3r project using Slic3r::Point as its base type.
# clipper.cpp
# clipper.hpp
clipper_z.cpp
clipper_z.hpp
)
2020-05-20 16:28:46 +02:00
if(SLIC3R_PROFILE)
target_link_libraries(clipper Shiny)
endif()