From a13348d2916f82de1e5cf060c678a56a29021fa5 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Mon, 29 Nov 2021 16:24:44 +0300 Subject: [PATCH] Added CMakeList.txt Signed-off-by: Viktor Govako --- CMakeLists.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0670cce --- /dev/null +++ b/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})