mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-01 10:33:45 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
25 lines
369 B
CMake
25 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})
|