[1.5] Rework r2827. getopt was still being used in java binding

Update issue 301
This commit is contained in:
Mathieu Malaterre 2014-04-01 13:40:41 +00:00
parent 7d6d19c473
commit ff72d131ed
1 changed files with 5 additions and 1 deletions

View File

@ -7,8 +7,12 @@ SET(openjpegjni_SRCS
${OPENJPEG_SOURCE_DIR}/applications/codec/index.c
${OPENJPEG_SOURCE_DIR}/applications/codec/convert.c
#${OPENJPEG_SOURCE_DIR}/applications/common/color.c
${OPENJPEG_SOURCE_DIR}/applications/common/opj_getopt.c
)
if(NOT USE_SYSTEM_GETOPT)
list(APPEND openjpegjni_SRCS
${OPENJPEG_SOURCE_DIR}/applications/common/opj_getopt.c
)
endif()
# JNI binding:
find_package(JNI REQUIRED)