path-kit 0.4.0

Rust path operations library based on Skia PathOps and PathKit - union, intersect, simplify, stroke, RRect
Documentation
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 3.5)
project(PathKit)

set(CMAKE_CXX_STANDARD 17)

file(GLOB_RECURSE SOURCE_FILES src/*.cpp)

add_library(pathkit STATIC ${SOURCE_FILES})
include_directories(./)
add_executable(PathKitDemo main.cpp)
target_link_libraries(PathKitDemo pathkit)