You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
306 B

  1. set(POTRACE_SRCS
  2. src/bitmap_io.cpp
  3. src/curve.cpp
  4. src/decompose.cpp
  5. src/greymap.cpp
  6. src/potracelib.cpp
  7. src/render.cpp
  8. src/trace.cpp
  9. )
  10. add_library( potrace STATIC ${POTRACE_SRCS} )
  11. target_include_directories( potrace
  12. PUBLIC
  13. ${CMAKE_CURRENT_SOURCE_DIR}/include
  14. )