summaryrefslogtreecommitdiff
path: root/core/meson.build
diff options
context:
space:
mode:
authorkotontrion <[email protected]>2024-10-29 13:50:41 +0100
committerkotontrion <[email protected]>2024-10-29 13:50:41 +0100
commit57f20666e716fde56579b8aa638eed1264f793de (patch)
tree59b2ebbd770c80049cea4df82109d28f617675fe /core/meson.build
parent4d9ae88b0bab75779876d465f986791d052414ca (diff)
parent7e484188e7492ac7945c854bcc3f26cec1863c91 (diff)
Merge branch 'main' into feat/cava
Diffstat (limited to 'core/meson.build')
-rw-r--r--core/meson.build27
1 files changed, 0 insertions, 27 deletions
diff --git a/core/meson.build b/core/meson.build
deleted file mode 100644
index a2606db..0000000
--- a/core/meson.build
+++ /dev/null
@@ -1,27 +0,0 @@
-project(
- 'astal',
- 'vala',
- 'c',
- version: run_command('cat', join_paths(meson.project_source_root(), 'version')).stdout().strip(),
- meson_version: '>= 0.62.0',
- default_options: [
- 'warning_level=2',
- 'werror=false',
- 'c_std=gnu11',
- ],
-)
-
-prefix = get_option('prefix')
-libdir = get_option('prefix') / get_option('libdir')
-pkgdatadir = prefix / get_option('datadir') / 'astal'
-
-assert(
- get_option('lib') or get_option('cli'),
- 'Either lib or cli option must be set to true.',
-)
-
-if get_option('gjs')
- install_subdir('gjs', install_dir: pkgdatadir)
-endif
-
-subdir('src')