diff options
author | pommicket <pommicket@gmail.com> | 2025-09-15 15:11:13 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-15 15:11:59 -0400 |
commit | dc989291eb6b9b20a25a78f35d6f04968a88ed0b (patch) | |
tree | ca494122e2169cbfdb776bfbeadc4b791af03ab9 /meson.build | |
parent | 627278a0cb84bca7751e97f13d9c235abac678f0 (diff) |
Switch to cmake
meson builds "thin" archives by default (this is basically undocumented).
You can avoid this by setting install: true supposedly. Whatever I hate it anyways.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/meson.build b/meson.build deleted file mode 100644 index ab5080b..0000000 --- a/meson.build +++ /dev/null @@ -1,8 +0,0 @@ -project('pom', 'c', - # Note: Only C99 is strictly needed - default_options: ['c_std=c23']) -library('pom', 'pom.c') -static_lib = static_library('pom', 'pom.c') -tests = executable('tests', 'tests/main.c', 'tests/parsing.c', - 'tests/errors.c', 'tests/location.c', link_with: [static_lib]) -test('tests', tests) |