mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
13 lines
234 B
CMake
13 lines
234 B
CMake
set(TINYSPLINE_LIB_SRCS
|
|
tinyspline.c
|
|
tinysplinecxx.cxx
|
|
parson.c
|
|
)
|
|
|
|
add_library(tinyspline_lib STATIC ${TINYSPLINE_LIB_SRCS})
|
|
|
|
target_include_directories( tinyspline_lib
|
|
PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|