summaryrefslogtreecommitdiff
path: root/core/meson.build
diff options
context:
space:
mode:
authorKevin <[email protected]>2024-10-16 00:49:16 -0300
committerKevin <[email protected]>2024-10-16 00:49:16 -0300
commit2b1e8501b46056b79d97e90c6ec94e3ad36d0ab2 (patch)
tree6486e98bd1ba523b1aeb4bd2566d1ff6e5c41798 /core/meson.build
parent03f2c4706faba7dac5aee71b10255eac218cbeec (diff)
parent236487001ab2a6c9c8e87e5db0ced9e5ab3ed791 (diff)
Merge branch 'adapt-upstream-changes'
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')