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.
21 lines
442 B
21 lines
442 B
# .cpp files are compiled with extra ${WSHADOW_FLAGS}
|
|
if( COMPILER_SUPPORTS_WSHADOW )
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WSHADOW_FLAGS}")
|
|
endif()
|
|
|
|
include_directories(BEFORE ${INC_BEFORE})
|
|
include_directories(
|
|
${INC_AFTER}
|
|
)
|
|
|
|
set(POLYGON_SRCS
|
|
math_for_graphics.cpp
|
|
polygon_test_point_inside.cpp
|
|
clipper.cpp
|
|
)
|
|
|
|
add_library(polygon STATIC ${POLYGON_SRCS})
|
|
|
|
target_include_directories( polygon PUBLIC
|
|
include
|
|
)
|