Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/poly2tri/CMakeLists.txt')
-rw-r--r--src/poly2tri/CMakeLists.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/poly2tri/CMakeLists.txt b/src/poly2tri/CMakeLists.txt
new file mode 100644
index 000000000..3cdff1221
--- /dev/null
+++ b/src/poly2tri/CMakeLists.txt
@@ -0,0 +1,17 @@
+project(poly2tri)
+cmake_minimum_required(VERSION 2.6)
+
+add_library(poly2tri STATIC
+ common/shapes.cc
+ common/shapes.h
+ common/utils.h
+ poly2tri.h
+ sweep/advancing_front.cc
+ sweep/advancing_front.h
+ sweep/cdt.cc
+ sweep/cdt.h
+ sweep/sweep.cc
+ sweep/sweep.h
+ sweep/sweep_context.cc
+ sweep/sweep_context.h
+)