From d9b6547fa2967aaa5bebcae00346b3f305c094b5 Mon Sep 17 00:00:00 2001 From: Yuri Gorshenin Date: Wed, 21 Dec 2016 12:40:22 +0300 Subject: [cmake] Added CMakeLists for generator_tests_support and libtess2. --- 3party/libtess2/CMakeLists.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 3party/libtess2/CMakeLists.txt (limited to '3party') 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}) -- cgit v1.2.3