diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:41:38 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:41:38 +0000 |
commit | 7b6e527f440cd7e6f8be2b07cee320ee6ca18786 (patch) | |
tree | 4a2738d69fa2814659fdadddf5826282e73d81f4 /manual tests/13 builddir upgrade | |
parent | Initial commit. (diff) | |
download | meson-7b6e527f440cd7e6f8be2b07cee320ee6ca18786.tar.xz meson-7b6e527f440cd7e6f8be2b07cee320ee6ca18786.zip |
Adding upstream version 1.0.1.upstream/1.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'manual tests/13 builddir upgrade')
-rw-r--r-- | manual tests/13 builddir upgrade/data/foo.dat | 0 | ||||
-rw-r--r-- | manual tests/13 builddir upgrade/foo.1 | 0 | ||||
-rw-r--r-- | manual tests/13 builddir upgrade/foo.c | 6 | ||||
-rw-r--r-- | manual tests/13 builddir upgrade/lib.c | 9 | ||||
-rw-r--r-- | manual tests/13 builddir upgrade/meson.build | 21 | ||||
-rw-r--r-- | manual tests/13 builddir upgrade/mod.py | 1 |
6 files changed, 37 insertions, 0 deletions
diff --git a/manual tests/13 builddir upgrade/data/foo.dat b/manual tests/13 builddir upgrade/data/foo.dat new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/manual tests/13 builddir upgrade/data/foo.dat diff --git a/manual tests/13 builddir upgrade/foo.1 b/manual tests/13 builddir upgrade/foo.1 new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/manual tests/13 builddir upgrade/foo.1 diff --git a/manual tests/13 builddir upgrade/foo.c b/manual tests/13 builddir upgrade/foo.c new file mode 100644 index 0000000..f8edd23 --- /dev/null +++ b/manual tests/13 builddir upgrade/foo.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main() { + printf("Hello world!\n"); + return 0; +} diff --git a/manual tests/13 builddir upgrade/lib.c b/manual tests/13 builddir upgrade/lib.c new file mode 100644 index 0000000..2ea9c7d --- /dev/null +++ b/manual tests/13 builddir upgrade/lib.c @@ -0,0 +1,9 @@ +#if defined _WIN32 || defined __CYGWIN__ +#define DLL_PUBLIC __declspec(dllexport) +#else +#define DLL_PUBLIC +#endif + +int DLL_PUBLIC foo(void) { + return 0; +} diff --git a/manual tests/13 builddir upgrade/meson.build b/manual tests/13 builddir upgrade/meson.build new file mode 100644 index 0000000..34ae39c --- /dev/null +++ b/manual tests/13 builddir upgrade/meson.build @@ -0,0 +1,21 @@ +project('check old builddirs in a stable release', 'c') + +lib = both_libraries('lib', 'lib.c') +exe = executable('foo', 'foo.c', link_with: lib, install: true) +test('exe', exe) + +install_data('data/foo.dat', install_dir: get_option('datadir') / 'foo') +install_man('foo.1') + +py = import('python').find_installation() +py.install_sources('mod.py', subdir: 'foo') +install_subdir('data', install_dir: py.get_install_dir()) + +custom_target( + input: 'mod.py', + output: 'hello.dat', + command: [py, '@INPUT@'], + capture: true, + install: true, + install_dir: get_option('localstatedir') / 'foo', +) diff --git a/manual tests/13 builddir upgrade/mod.py b/manual tests/13 builddir upgrade/mod.py new file mode 100644 index 0000000..60f08aa --- /dev/null +++ b/manual tests/13 builddir upgrade/mod.py @@ -0,0 +1 @@ +print('Hello world!') |