shapefile-thing/meson.build

18 lines
297 B
Meson
Raw Permalink Normal View History

2024-01-08 17:14:18 -08:00
project('shapefile-test', 'cpp',
default_options : [
2024-01-08 22:14:28 -08:00
'cpp_std=c++17',
2024-01-08 17:14:18 -08:00
'warning_level=3',
'buildtype=release',
]
)
executable(
'shapething',
'src/main.cpp',
dependencies : [
dependency('geographiclib'),
dependency('shapelib'),
],
install : true
)