summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMickael Savinaud <savmickael@users.noreply.github.com>2011-07-21 16:26:23 +0000
committerMickael Savinaud <savmickael@users.noreply.github.com>2011-07-21 16:26:23 +0000
commitec398229b12ec32774c7b7d19f93431c7f1de7cb (patch)
tree305b087b7735086b1ecb8d18c8e4582f463bc8eb
parenta19c8a4ea38866c1654f26f8389e4a4e7d9b092e (diff)
correct a compil error linked to getopt with win platform
-rw-r--r--CHANGES1
-rw-r--r--tests/CMakeLists.txt6
2 files changed, 4 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 5ef91e23..0566072c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,7 @@ What's New for OpenJPEG
+ : added
July 21, 2011
+! [mickael] correct a compil error linked to getopt with win platform
!+ [mickael] add new decode tests based on conformance data and tolerance. Non regression is also added on the decoder output. Deactivate old tests.
! [mickael] to follow last version of conformance data about component separator for pgx file, we changed - to _ separator even if nb component = 1
! [mickael] removed unused warning configuration message
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 29879b82..858befb4 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -11,8 +11,8 @@ SET(comparePGXimages_SRCS comparePGXimages.c ${OPENJPEG_SOURCE_DIR}/applications
# If not getopt was found then add it to the exe:
IF(DONT_HAVE_GETOPT)
message("dont have getopt, we will add it")
- SET(common_SRCS
- ${common_SRCS}
+ SET(comparePGXimages_SRCS
+ ${comparePGXimages_SRCS}
${OPENJPEG_SOURCE_DIR}/applications/common/getopt.c
)
ENDIF(DONT_HAVE_GETOPT)
@@ -28,4 +28,4 @@ IF(NOT HAVE_LIBPNG)
MESSAGE(WARNING "Lib PNG seems to be not available: if you want run the non-regression tests with images reported to the dashboard, you need it (try BUILD_THIRDPARTY)")
ENDIF(NOT HAVE_LIBPNG)
-ADD_SUBDIRECTORY(conformance) \ No newline at end of file
+ADD_SUBDIRECTORY(conformance)