mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-08-28 23:02:36 +02:00
18 lines
340 B
CMake
18 lines
340 B
CMake
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
|
||
|
|
)
|