* Merge msys2_relocate into pathtools, so there is only one header for everything * Stop exposing unused split_path_list, strip_n_prefix_folders, pathlist_relocation, pathlist_relocation_lib, sanitise_path, malloc_copy_string * Make the header usable with cpp
10 lines
200 B
Meson
10 lines
200 B
Meson
project('msys2-pathtools', 'c', 'cpp',
|
|
version : '0.1',
|
|
default_options : [
|
|
'warning_level=3',
|
|
'buildtype=debugoptimized',
|
|
]
|
|
)
|
|
|
|
test('main', executable('main', 'main.c', 'pathtools.c'))
|