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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/3party
diff options
context:
space:
mode:
Diffstat (limited to '3party')
-rw-r--r--3party/libtess2/CMakeLists.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/3party/libtess2/CMakeLists.txt b/3party/libtess2/CMakeLists.txt
new file mode 100644
index 0000000000..0670ccebc8
--- /dev/null
+++ b/3party/libtess2/CMakeLists.txt
@@ -0,0 +1,24 @@
+project(tess2)
+
+include_directories(Include)
+
+set(
+ SRC
+ Include/tesselator.h
+ Source/bucketalloc.c
+ Source/bucketalloc.h
+ Source/dict.c
+ Source/dict.h
+ Source/geom.c
+ Source/geom.h
+ Source/mesh.c
+ Source/mesh.h
+ Source/priorityq.c
+ Source/priorityq.h
+ Source/sweep.c
+ Source/sweep.h
+ Source/tess.c
+ Source/tess.h
+)
+
+add_library(${PROJECT_NAME} ${SRC})