Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « poly2tri « src - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3cdff1221d9af4daa285b661071abac827f97c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
project(poly2tri)
cmake_minimum_required(VERSION 2.6)

add_library(poly2tri STATIC
    common/shapes.cc
    common/shapes.h
    common/utils.h
    poly2tri.h
    sweep/advancing_front.cc
    sweep/advancing_front.h
    sweep/cdt.cc
    sweep/cdt.h
    sweep/sweep.cc
    sweep/sweep.h
    sweep/sweep_context.cc
    sweep/sweep_context.h
)