From 327f54b605b92a7b81a5a4de95f9f3741b786be5 Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Tue, 4 Nov 2025 21:30:53 +0800 Subject: Remove meson related things. --- lib/meson-projects/meson.build | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 lib/meson-projects/meson.build (limited to 'lib/meson-projects/meson.build') 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 - -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 - -- cgit v1.2.3