This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/3party/libtess2/CMakeLists.txt

24 lines
369 B
CMake

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})