53 lines
1.2 KiB
CMake
53 lines
1.2 KiB
CMake
set( KIMATH_SRCS
|
|
src/bezier_curves.cpp
|
|
src/convert_basic_shapes_to_polygon.cpp
|
|
src/md5_hash.cpp
|
|
src/trigo.cpp
|
|
|
|
src/geometry/eda_angle.cpp
|
|
src/geometry/circle.cpp
|
|
src/geometry/convex_hull.cpp
|
|
src/geometry/direction_45.cpp
|
|
src/geometry/geometry_utils.cpp
|
|
src/geometry/seg.cpp
|
|
src/geometry/shape.cpp
|
|
src/geometry/shape_arc.cpp
|
|
src/geometry/shape_collisions.cpp
|
|
src/geometry/shape_file_io.cpp
|
|
src/geometry/shape_line_chain.cpp
|
|
src/geometry/shape_poly_set.cpp
|
|
src/geometry/shape_rect.cpp
|
|
src/geometry/shape_compound.cpp
|
|
src/geometry/shape_segment.cpp
|
|
|
|
|
|
src/math/vector2.cpp
|
|
src/math/util.cpp
|
|
)
|
|
|
|
# Include the other smaller math libraries in this one for convenience
|
|
add_library( kimath STATIC
|
|
${KIMATH_SRCS}
|
|
)
|
|
|
|
target_link_libraries( kimath
|
|
clipper
|
|
clipper2
|
|
othermath
|
|
rtree
|
|
${wxWidgets_LIBRARIES} # wxLogDebug, wxASSERT
|
|
${Boost_LIBRARIES} # Because of the OPT types
|
|
)
|
|
|
|
target_include_directories( kimath PUBLIC
|
|
${PROJECT_BINARY_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/include
|
|
)
|
|
|
|
# core/optional.h is needed for OPT types
|
|
target_include_directories( kimath PRIVATE
|
|
${PROJECT_SOURCE_DIR}/include
|
|
${wxWidgets_LIBRARIES}
|
|
${Boost_INCLUDE_DIR}
|
|
)
|