aboutsummaryrefslogtreecommitdiff
path: root/src/meson.build
diff options
context:
space:
mode:
authoraxtloss <axtlos@disroot.org>2024-05-28 13:01:13 +0200
committeraxtloss <axtlos@disroot.org>2024-05-28 13:01:13 +0200
commitb666cb3b757b408c9515b4749c7e8a05971ec451 (patch)
tree67f313f43f73205f987943a9e2cb6b367d0eb913 /src/meson.build
downloadautodarkmode-b666cb3b757b408c9515b4749c7e8a05971ec451.tar.gz
autodarkmode-b666cb3b757b408c9515b4749c7e8a05971ec451.tar.bz2
add files
Diffstat (limited to 'src/meson.build')
-rw-r--r--src/meson.build15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/meson.build b/src/meson.build
new file mode 100644
index 0000000..4848423
--- /dev/null
+++ b/src/meson.build
@@ -0,0 +1,15 @@
+autodarkmode_sources = [
+ 'main.c',
+ 'sun.c'
+]
+
+autodarkmode_deps = [
+ dependency('glib-2.0'),
+]
+
+executable('autodarkmode', autodarkmode_sources,
+ dependencies: autodarkmode_deps,
+ install: true,
+ link_args: '-lm',
+)
+