diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2022-10-24 01:00:57 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-10-25 00:03:32 +0300 |
| commit | 458dcf8aac74903380c2adceb2b16a87f231b42b (patch) | |
| tree | b84536ec74c1eb4131282f4a4caecbbe644c8def /test cases/unit/98 install all targets/lib.c | |
| parent | 1a1aad317f71731d8440f695d29bc12c28011de2 (diff) | |
| download | meson-458dcf8aac74903380c2adceb2b16a87f231b42b.tar.gz | |
Condense test directory numbers.
Diffstat (limited to 'test cases/unit/98 install all targets/lib.c')
| -rw-r--r-- | test cases/unit/98 install all targets/lib.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/unit/98 install all targets/lib.c b/test cases/unit/98 install all targets/lib.c new file mode 100644 index 000000000..2ea9c7dd1 --- /dev/null +++ b/test cases/unit/98 install all targets/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; +} |
