diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2024-11-10 15:48:01 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2024-11-10 15:48:01 -0500 |
commit | 0d38d45a5654ffba4d7fe979b18e2b68cd691989 (patch) | |
tree | eab8844ec17a00b04e919cdc5c134cff7bce6eeb /meson.build | |
parent | ea1a7bbca364fa59a6647006f00818ed5424ac45 (diff) | |
parent | af2ebd8a8b282e3ddb15cdb8775a4cceb60ae637 (diff) | |
download | lite-xl-plugin-manager-0d38d45a5654ffba4d7fe979b18e2b68cd691989.tar.gz lite-xl-plugin-manager-0d38d45a5654ffba4d7fe979b18e2b68cd691989.zip |
Merge branch 'master' of github.com:lite-xl/lite-xl-plugin-manager
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/meson.build b/meson.build index e7f9138..9625d01 100644 --- a/meson.build +++ b/meson.build @@ -58,4 +58,17 @@ if get_option('static') cflags += '-DLPM_STATIC' endif -executable('lpm', lpm_source, dependencies: [zlib_dep, lzma_dep, mbedtls_dep, libgit2_dep, libzip_dep, lua_dep, microtar_dep], c_args: cflags) +lpm_exe = executable('lpm', + lpm_source, + dependencies: [ + zlib_dep, + lzma_dep, + mbedtls_dep, + libgit2_dep, + libzip_dep, + lua_dep, + microtar_dep + ], + c_args: cflags, + install: true, +) |