updated INSTALL files, fixed a bug in CMakeLists.txt that prevented finding the data...
authorAntonin Descampe <antonin@gmail.com>
Mon, 22 Aug 2011 10:42:32 +0000 (10:42 +0000)
committerAntonin Descampe <antonin@gmail.com>
Mon, 22 Aug 2011 10:42:32 +0000 (10:42 +0000)
CMakeLists.txt
INSTALL

index 9dab73931c2af50a450a1eca5dfbffbd46997435..513e9cdd1bd4bb091125dfd6baa79fe9db210ba4 100644 (file)
@@ -250,7 +250,7 @@ IF(BUILD_TESTING)
     # They could be found via svn on the OpenJPEG google code project
     # svn checkout http://openjpeg.googlecode.com/svn/data (about 70 Mo) 
     FIND_PATH(OPJ_DATA_ROOT README-OPJ-Data 
-              PATHS $ENV{OPJ_DATA_ROOT} ${CMAKE_SOURCE_DIR}/../opj-data)
+              PATHS $ENV{OPJ_DATA_ROOT} ${CMAKE_SOURCE_DIR}/../data)
               
     SET (REF_DECODER_BIN_PATH "NOT-FOUND" CACHE PATH "Single directory where find the reference encoder binaries to enable encoding test suite.")
     MARK_AS_ADVANCED(REF_DECODER_BIN_PATH)
diff --git a/INSTALL b/INSTALL
index 0631f3ee55cfc039d8676635a13a2fd2bf6d1af3..3be914f44d47a06d0f383631b2d90df0d3cd83fd 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -87,10 +87,13 @@ Main available cmake flags:
 * To build the JPWL executables and JPWL library: '-DBUILD_JPWL:bool=on' (default: 'OFF')
 * To build the JPIP library and utilities: '-DBUILD_JPIP:bool=on' (default: 'OFF')
 * To enable testing (and automatic result upload to http://my.cdash.org/index.php?project=OPENJPEG):
-    cmake . -DBUILD_TESTING:BOOL=ON
+    cmake . -DBUILD_TESTING:BOOL=ON -DOPJ_DATA_ROOT:PATH='path/to/the/data/directory'
     make
     make Experimental
-  Note : JPEG2000 test files are available with 'svn checkout http://openjpeg.googlecode.com/svn/data' (about 70 Mo)
+  Note : JPEG2000 test files are available with 'svn checkout http://openjpeg.googlecode.com/svn/data' (about 70 Mo).
+  If '-DOPJ_DATA_ROOT:PATH' option is omitted, test files will be automatically searched in '${CMAKE_SOURCE_DIR}/../data',
+  corresponding to the location of the data directory when compiling from the trunk (and assuming the data directory has
+  been checked out of course).
 
 MACOSX
 ------