aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build13
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
+)