diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-03-24 17:18:03 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-03-28 21:52:39 +0300 |
commit | 8e2f2d8d7e75378cc86650117883558472ac395e (patch) | |
tree | fb990774f2ba23ead09b558b1108ac5d3c7f149d /test cases/unit/94 custominc/prog2.c | |
parent | 268a78f0f473c1b5193e8b44a067030b74a6559d (diff) | |
download | meson-implicitcustom.tar.gz |
Do not add custom target dir automatically when implicit false.implicitcustom
Diffstat (limited to 'test cases/unit/94 custominc/prog2.c')
-rw-r--r-- | test cases/unit/94 custominc/prog2.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test cases/unit/94 custominc/prog2.c b/test cases/unit/94 custominc/prog2.c new file mode 100644 index 000000000..e64b22919 --- /dev/null +++ b/test cases/unit/94 custominc/prog2.c @@ -0,0 +1,10 @@ +#include<stdlib.h> +#include<generated.h> + +int func(void); + +int main(int argc, char **argv) { + (void)argc; + (void)(argv); + return func() + RETURN_VALUE; +} |