mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-24 14:15:00 +00:00
4ef02fd699
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.
11 lines
185 B
CMake
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}
|
|
)
|