aboutsummaryrefslogtreecommitdiff
path: root/lib/meson-projects/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'lib/meson-projects/meson.build')
-rw-r--r--lib/meson-projects/meson.build26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/meson-projects/meson.build b/lib/meson-projects/meson.build
deleted file mode 100644
index 5efa46af..00000000
--- a/lib/meson-projects/meson.build
+++ /dev/null
@@ -1,26 +0,0 @@
-project('cru-deps', 'c', 'cpp')
-
-hello_word_test = '''
-#include <stdio.h>
-
-int main() {
- printf("Hello world!");
- return 0;
-}
-'''
-
-cc = meson.get_compiler('c')
-hello_world_result = cc.run(hello_word_test, name: 'hello world')
-
-if hello_world_result.returncode() != 0
- error('Failed to hello world!')
-endif
-
-if get_option('cairo').enabled()
- subproject('cairo')
-endif
-
-if get_option('pango').enabled()
- subproject('pango')
-endif
-