mirror of
https://github.com/jhasse/poly2tri.git
synced 2024-11-13 01:19:54 +01:00
11 lines
271 B
Meson
11 lines
271 B
Meson
|
project('poly2tri', ['cpp'])
|
||
|
|
||
|
include = include_directories('.')
|
||
|
lib = static_library('poly2tri', sources : [
|
||
|
'poly2tri/common/shapes.cc',
|
||
|
'poly2tri/sweep/advancing_front.cc',
|
||
|
'poly2tri/sweep/cdt.cc',
|
||
|
'poly2tri/sweep/sweep.cc',
|
||
|
'poly2tri/sweep/sweep_context.cc',
|
||
|
])
|