summaryrefslogtreecommitdiff
path: root/tests/include_openjpeg.c
diff options
context:
space:
mode:
authorMatthieu Darbois <mayeut@users.noreply.github.com>2016-07-14 11:06:26 +0200
committerGitHub <noreply@github.com>2016-07-14 11:06:26 +0200
commitb8bd1b0e07cf427b80eb0dc6823efebbdd1b8e5b (patch)
treeca702e04793729749ccc1a094270e1b6ea13c86b /tests/include_openjpeg.c
parente40c28c2e89c30ebb682fe2fabef10930e039c1f (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.c9
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;
+}