mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-02 12:41:18 -07:00
13 lines
220 B
CMake
13 lines
220 B
CMake
project(clipper)
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
add_library(clipper STATIC
|
|
clipper.cpp
|
|
clipper.hpp
|
|
clipper_z.cpp
|
|
clipper_z.hpp
|
|
)
|
|
|
|
if(SLIC3R_PROFILE)
|
|
target_link_libraries(clipper Shiny)
|
|
endif()
|