diff options
| author | Filipe Laíns <lains@riseup.net> | 2021-08-17 13:38:48 +0100 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-09-06 18:10:55 +0200 |
| commit | af8b55d49b64e72dbefbd40d613b93f56d17b855 (patch) | |
| tree | ff763c3346d5b7f8f87f41e3f0cb7348ded1a47e /test cases/unit/98 install all targets/lib.c | |
| parent | be3bd9ea64570a468d482a8fc70e3d8474f77286 (diff) | |
| download | meson-af8b55d49b64e72dbefbd40d613b93f56d17b855.tar.gz | |
mintro: add installed_plan
Signed-off-by: Filipe Laíns <lains@riseup.net>
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; +} |
