diff options
author | axtloss <axtlos@disroot.org> | 2024-05-28 13:01:13 +0200 |
---|---|---|
committer | axtloss <axtlos@disroot.org> | 2024-05-28 13:01:13 +0200 |
commit | b666cb3b757b408c9515b4749c7e8a05971ec451 (patch) | |
tree | 67f313f43f73205f987943a9e2cb6b367d0eb913 /src/meson.build | |
download | autodarkmode-b666cb3b757b408c9515b4749c7e8a05971ec451.tar.gz autodarkmode-b666cb3b757b408c9515b4749c7e8a05971ec451.tar.bz2 |
add files
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 15 |
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', +) + |