7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2024-11-24 14:15:00 +00:00
kicad/thirdparty/delaunator/CMakeLists.txt
Seth Hillbrand 4ef02fd699 Replace TTL delauney triangulator
Removes the TTL triangulator in favor of the delaunator triangulator.
This removes the only AGPL code in the KiCad codebase and therefore
allows the full project to be licensed under the GPLv3.
2020-06-25 18:45:27 +00:00

11 lines
185 B
CMake

set(DELAUNATOR_SRCS
delaunator.cpp
)
add_library(delaunator STATIC ${DELAUNATOR_SRCS})
target_include_directories( delaunator
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
)