diff options
| author | dacctal <120422854+dacctal@users.noreply.github.com> | 2026-01-21 23:56:39 -0500 |
|---|---|---|
| committer | dacctal <120422854+dacctal@users.noreply.github.com> | 2026-01-21 23:56:39 -0500 |
| commit | 8926f839720471cc86fd4f7c6371d63b8f71b91d (patch) | |
| tree | c14523954085f7b6c428a488f81bfb645dcd2c83 /meson.build | |
| parent | 8fc3b1f6cd1062e15c0aed60a110fb91143cd801 (diff) | |
initial commit
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..9f8e633 --- /dev/null +++ b/meson.build @@ -0,0 +1,13 @@ +project( + 'pkgit', + 'cpp', + default_options: ['cpp_std=c++17', 'default_library=static'] +) + +inc = include_directories('include') + +executable( + 'pkgit', + 'src/main.cc', + include_directories: inc +) |
