aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-05-21 19:36:26 +0200
committerdec05eba <dec05eba@protonmail.com>2019-05-21 19:36:26 +0200
commit7cde49baf87b8340c608e76bc6052769deb1cdf4 (patch)
treebe74945fc012648deb72eb718af878207182c09b /meson.build
Initial commit
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..324b316
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,5 @@
+project('quickmedia', 'c')
+dependencies = [
+ dependency('gtk+-3.0')
+]
+executable('quickmedia', 'main.c', dependencies: dependencies)