mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-24 00:34:47 +00:00
5c0656d97f
Part of the cleanup in #3637
17 lines
306 B
CMake
17 lines
306 B
CMake
set(POTRACE_SRCS
|
|
src/bitmap_io.cpp
|
|
src/curve.cpp
|
|
src/decompose.cpp
|
|
src/greymap.cpp
|
|
src/potracelib.cpp
|
|
src/render.cpp
|
|
src/trace.cpp
|
|
)
|
|
|
|
add_library( potrace STATIC ${POTRACE_SRCS} )
|
|
|
|
target_include_directories( potrace
|
|
PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}/include
|
|
)
|