Skip to content

Commit 2e085ca

Browse files
author
rtoslab
committed
add third party include path.
1 parent e29bea7 commit 2e085ca

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

Diff for: SConscript

+1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ path += [cwd + '/generated']
128128
path += [cwd + '/thirdparty/freetype/include']
129129
path += [cwd + '/thirdparty/jbig2dec']
130130
path += [cwd + '/thirdparty/jpeg']
131+
path += [cwd + '/thirdparty/openjpeg']
131132
path += [cwd + '/thirdparty/openjpeg/libopenjpeg']
132133
path += [cwd + '/thirdparty/zlib']
133134

Diff for: thirdparty/openjpeg/opj_config.h

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/* If you want to build the library manually without using
2+
* 'configure' or 'CMake'
3+
* then copy this file
4+
* 'opj_config.h.in.user'
5+
* to
6+
* 'opj_config.h'
7+
*
8+
* Open 'opj_config.h' and change the file contents
9+
* if you want to define something because you know you have
10+
* BOTH installed the library AND the header file(s).
11+
* Then e.g. write
12+
#define HAVE_LIBPNG 1
13+
*
14+
*
15+
* The file 'opj_config.h' will be included in some source files.
16+
* ==== YOU CAN NOT COMPILE WITHOUT IT. ====
17+
* === DO NOT FORGET TO CHANGE 'config.nix' APPROPRIATELY. ====
18+
*/
19+
20+
/* DO NOT DEFINE BOTH VERSIONS OF LCMS */
21+
/* define to 1 if you have both liblcms and lcms.h installed */
22+
#undef HAVE_LIBLCMS1
23+
/* #define HAVE_LIBLCMS1 1 */
24+
25+
/* define to 1 if you have both liblcms2 and lcms2.h installed */
26+
#undef HAVE_LIBLCMS2
27+
/* #define HAVE_LIBLCMS2 1 */
28+
29+
/* define to 1 if you have both libpng and png.h installed */
30+
#undef HAVE_LIBPNG
31+
/* #define HAVE_LIBPNG 1 */
32+
33+
/* define to 1 if you have both libtiff and tiff.h installed */
34+
#undef HAVE_LIBTIFF
35+
/* #define HAVE_LIBTIFF 1 */
36+
37+
/*---------------- DO NOT CHANGE BELOW THIS LINE ----------------*/
38+
#define PACKAGE_URL "http://www.openjpeg.org/"
39+
#define PACKAGE_BUGREPORT "http://code.google.com/p/openjpeg/"
40+
41+
#define PACKAGE_VERSION "1.4.0"

0 commit comments

Comments
 (0)