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.
20 lines
408 B
20 lines
408 B
|
|
include_directories(BEFORE ${INC_BEFORE})
|
|
include_directories(
|
|
${INC_AFTER}
|
|
)
|
|
|
|
set(POLYGON_SRCS
|
|
math_for_graphics.cpp
|
|
PolyLine.cpp
|
|
polygon_test_point_inside.cpp
|
|
clipper.cpp
|
|
|
|
poly2tri/common/shapes.cc
|
|
poly2tri/sweep/sweep.cc
|
|
poly2tri/sweep/cdt.cc
|
|
poly2tri/sweep/advancing_front.cc
|
|
poly2tri/sweep/sweep_context.cc
|
|
)
|
|
|
|
add_library(polygon STATIC ${POLYGON_SRCS})
|