about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDaniel <steew0x8@protonmail.com>2021-11-07 19:32:57 +0100
committerDaniel <steew0x8@protonmail.com>2021-11-07 19:32:57 +0100
commit0c2e9877ff4231e6c68b689f4f67cc64b49515a6 (patch)
treee154973d3ddf2e55e2d9beb060254e151a975b9f
parent079a624771f697a90b478f11d98ae36119b82529 (diff)
downloadrpncalc-0c2e9877ff4231e6c68b689f4f67cc64b49515a6.tar.gz
toggle installable flag
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index f04c60e..01f862e 100644
--- a/meson.build
+++ b/meson.build
@@ -2,4 +2,4 @@ project('rpncalc', 'c')
 src = ['main.c', 'state.c', 'util.c', 'cmds.c']
 cc = meson.get_compiler('c')
 deps = cc.find_library('m', required : true)
-executable('rpncalc', src, dependencies : deps)
+executable('rpncalc', src, dependencies : deps, install : true)