aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/windows/12 resources with custom targets
diff options
context:
space:
mode:
authorAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
committerAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
commitaf1a266670d040d2f4083ff309d732d648afba2a (patch)
tree2fc46203448ddcc6f81546d379abfaeb323575e9 /meson/test cases/windows/12 resources with custom targets
parente02cda008591317b1625707ff8e115a4841aa889 (diff)
Add submodule dependency filesHEADmaster
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'meson/test cases/windows/12 resources with custom targets')
-rw-r--r--meson/test cases/windows/12 resources with custom targets/meson.build70
-rw-r--r--meson/test cases/windows/12 resources with custom targets/prog.c19
-rwxr-xr-xmeson/test cases/windows/12 resources with custom targets/res/gen-res.py6
-rw-r--r--meson/test cases/windows/12 resources with custom targets/res/meson.build19
-rw-r--r--meson/test cases/windows/12 resources with custom targets/res/myres.rc.in4
-rw-r--r--meson/test cases/windows/12 resources with custom targets/res/myres_static.rc3
-rw-r--r--meson/test cases/windows/12 resources with custom targets/res/resource.h0
-rw-r--r--meson/test cases/windows/12 resources with custom targets/res/sample.icobin0 -> 9662 bytes
8 files changed, 121 insertions, 0 deletions
diff --git a/meson/test cases/windows/12 resources with custom targets/meson.build b/meson/test cases/windows/12 resources with custom targets/meson.build
new file mode 100644
index 000000000..282272d76
--- /dev/null
+++ b/meson/test cases/windows/12 resources with custom targets/meson.build
@@ -0,0 +1,70 @@
+project('winmain', 'c')
+
+# MinGW windres has a bug due to which it doesn't parse args with space properly:
+# https://github.com/mesonbuild/meson/pull/1346
+# https://sourceware.org/bugzilla/show_bug.cgi?id=4933
+if ['gcc', 'clang'].contains(meson.get_compiler('c').get_id()) and host_machine.system() == 'windows'
+ # Construct build_to_src and skip this test if it has spaces
+ # because then the -I flag to windres will also have spaces
+ # and we know the test will fail
+ src_parts = meson.source_root().split('/')
+ build_parts = meson.build_root().split('/')
+
+ # Get the common path (which might just be '/' or 'C:/')
+ common = []
+ done = false
+ count = 0
+ if src_parts.length() > build_parts.length()
+ parts = build_parts
+ other = src_parts
+ else
+ parts = src_parts
+ other = build_parts
+ endif
+ foreach part : parts
+ if not done and part == other.get(count)
+ common += [part]
+ else
+ done = true
+ endif
+ count += 1
+ endforeach
+
+ # Create path components to go down from the build root to the common path
+ count = 0
+ rel = build_parts
+ foreach build : build_parts
+ if count < build_parts.length() - common.length()
+ rel += ['..']
+ endif
+ count += 1
+ endforeach
+
+ # Create path components to go up from the common path to the build root
+ count = 0
+ foreach src : src_parts
+ if count >= common.length()
+ rel += [src]
+ endif
+ count += 1
+ endforeach
+
+ build_to_src = '/'.join(rel)
+
+ if build_to_src.contains(' ')
+ message('build_to_src is: ' + build_to_src)
+ error('MESON_SKIP_TEST build_to_src has spaces')
+ endif
+ # Welcome to the end of this conditional.
+ # We hope you never have to implement something like this.
+endif
+
+subdir('res')
+
+foreach id : [0, 1, 2]
+ exe = executable('prog_@0@'.format(id), 'prog.c',
+ res[id],
+ gui_app : true)
+
+ test('winmain_@0@'.format(id), exe)
+endforeach
diff --git a/meson/test cases/windows/12 resources with custom targets/prog.c b/meson/test cases/windows/12 resources with custom targets/prog.c
new file mode 100644
index 000000000..cb6892d04
--- /dev/null
+++ b/meson/test cases/windows/12 resources with custom targets/prog.c
@@ -0,0 +1,19 @@
+#include<windows.h>
+
+#define MY_ICON 1
+
+int APIENTRY
+WinMain(
+ HINSTANCE hInstance,
+ HINSTANCE hPrevInstance,
+ LPSTR lpszCmdLine,
+ int nCmdShow) {
+ HICON hIcon;
+ hIcon = LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(MY_ICON));
+ // avoid unused argument error while matching template
+ ((void)hInstance);
+ ((void)hPrevInstance);
+ ((void)lpszCmdLine);
+ ((void)nCmdShow);
+ return hIcon ? 0 : 1;
+}
diff --git a/meson/test cases/windows/12 resources with custom targets/res/gen-res.py b/meson/test cases/windows/12 resources with custom targets/res/gen-res.py
new file mode 100755
index 000000000..e5ef6b108
--- /dev/null
+++ b/meson/test cases/windows/12 resources with custom targets/res/gen-res.py
@@ -0,0 +1,6 @@
+#!/usr/bin/env python3
+
+import sys
+
+with open(sys.argv[1]) as infile, open(sys.argv[2], 'w') as outfile:
+ outfile.write(infile.read().format(icon=sys.argv[3]))
diff --git a/meson/test cases/windows/12 resources with custom targets/res/meson.build b/meson/test cases/windows/12 resources with custom targets/res/meson.build
new file mode 100644
index 000000000..97976370b
--- /dev/null
+++ b/meson/test cases/windows/12 resources with custom targets/res/meson.build
@@ -0,0 +1,19 @@
+win = import('windows')
+
+rc_writer = find_program('./gen-res.py')
+
+rc_sources = []
+
+foreach id : [1, 2]
+ rc_sources += custom_target('RC source file @0@'.format(id),
+ input : 'myres.rc.in',
+ output : 'myres_@0@.rc'.format(id),
+ command : [rc_writer, '@INPUT@', '@OUTPUT@', files('sample.ico')],
+ install : false,
+ build_always : false)
+endforeach
+
+rc_sources += files('myres_static.rc')
+
+res = win.compile_resources(rc_sources,
+ include_directories: include_directories('.'))
diff --git a/meson/test cases/windows/12 resources with custom targets/res/myres.rc.in b/meson/test cases/windows/12 resources with custom targets/res/myres.rc.in
new file mode 100644
index 000000000..0cff642ba
--- /dev/null
+++ b/meson/test cases/windows/12 resources with custom targets/res/myres.rc.in
@@ -0,0 +1,4 @@
+#include<windows.h>
+#include<resource.h>
+
+1 ICON "{icon}"
diff --git a/meson/test cases/windows/12 resources with custom targets/res/myres_static.rc b/meson/test cases/windows/12 resources with custom targets/res/myres_static.rc
new file mode 100644
index 000000000..12838aee2
--- /dev/null
+++ b/meson/test cases/windows/12 resources with custom targets/res/myres_static.rc
@@ -0,0 +1,3 @@
+#include<windows.h>
+
+1 ICON "sample.ico"
diff --git a/meson/test cases/windows/12 resources with custom targets/res/resource.h b/meson/test cases/windows/12 resources with custom targets/res/resource.h
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/meson/test cases/windows/12 resources with custom targets/res/resource.h
diff --git a/meson/test cases/windows/12 resources with custom targets/res/sample.ico b/meson/test cases/windows/12 resources with custom targets/res/sample.ico
new file mode 100644
index 000000000..24bd3d9e9
--- /dev/null
+++ b/meson/test cases/windows/12 resources with custom targets/res/sample.ico
Binary files differ