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:
authorYuri Gorshenin <y@maps.me>2016-12-21 12:40:22 +0300
committerYuri Gorshenin <y@maps.me>2016-12-21 13:12:58 +0300
commitd9b6547fa2967aaa5bebcae00346b3f305c094b5 (patch)
tree3960c16be68cfa5a9577b9388db9d751c86bbbaf /3party
parent07e5667c43f4cb768269b1918bfa7786341891f5 (diff)
[cmake] Added CMakeLists for generator_tests_support and libtess2.
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})