diff options
| author | Matthieu Darbois <mayeut@users.noreply.github.com> | 2016-07-14 11:06:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-14 11:06:26 +0200 |
| commit | b8bd1b0e07cf427b80eb0dc6823efebbdd1b8e5b (patch) | |
| tree | ca702e04793729749ccc1a094270e1b6ea13c86b /tests/include_openjpeg.c | |
| parent | e40c28c2e89c30ebb682fe2fabef10930e039c1f (diff) | |
Add compilation test for standalone inclusion of openjpeg.h (#798)
This ensures all openjpeg.h dependencies are met.
Fix #673
Diffstat (limited to 'tests/include_openjpeg.c')
| -rw-r--r-- | tests/include_openjpeg.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/include_openjpeg.c b/tests/include_openjpeg.c new file mode 100644 index 00000000..aa13fb3b --- /dev/null +++ b/tests/include_openjpeg.c @@ -0,0 +1,9 @@ +#include <openjpeg.h> + +int main(int argc, char **argv) +{ + (void)argc; + (void)argv; + + return 0; +} |
