Update README and Makefiles to promote cmake. Fix the README.cmake file.
This commit is contained in:
parent
d5f9ea9fc2
commit
94b9942cd9
8
Makefile
8
Makefile
|
@ -1,3 +1,11 @@
|
|||
|
||||
# ************************************************
|
||||
# NOTE : This Makefile is not maintained anymore.
|
||||
# Please use the cmake tool (see README.cmake) to
|
||||
# generate the right Makefile for your platform.
|
||||
# ************************************************
|
||||
|
||||
|
||||
# Linux makefile for OpenJPEG
|
||||
|
||||
VER_MAJOR = 2
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
|
||||
# ************************************************
|
||||
# NOTE : This Makefile is not maintained anymore.
|
||||
# Please use the cmake tool (see README.cmake) to
|
||||
# generate the right Makefile for your platform.
|
||||
# ************************************************
|
||||
|
||||
|
||||
# MacOSX makefile for OpenJPEG
|
||||
|
||||
VER_MAJOR = 2
|
||||
|
|
21
README.cmake
21
README.cmake
|
@ -1,9 +1,18 @@
|
|||
Basic instructions on how to build using CMake (CMake 2.4.5 or newer is required)
|
||||
|
||||
svn co http://www.openjpeg.org/svn/trunk
|
||||
cd trunk
|
||||
mkdir bin
|
||||
cd bin
|
||||
cmake .. -DBUILD_EXAMPLES:BOOL=ON
|
||||
svn co http://openjpeg.googlecode.com/svn/trunk openjpeg-read-only
|
||||
cd openjpeg-read-only
|
||||
cmake -G "Unix Makefiles"
|
||||
make
|
||||
./bin/j2k_to_image
|
||||
./bin/j2k_to_image
|
||||
|
||||
For MacOSX users, if instructions above fail, try to add "-DCMAKE_OSX_ARCHITECTURES:STRING=i386" to the cmake command above.
|
||||
|
||||
To enable testing (and automatic result upload to http://my.cdash.org/index.php?project=OPENJPEG) :
|
||||
|
||||
svn co http://openjpeg.googlecode.com/svn/trunk openjpeg-read-only
|
||||
cd openjpeg-read-only
|
||||
cmake -G "Unix Makefiles" -DBUILD_TESTING:BOOL=ON -DJPEG2000_CONFORMANCE_DATA_ROOT:PATH=/path/to/your/JPEG2000/test/files
|
||||
make Experimental
|
||||
|
||||
Note : JPEG2000 test files are available here : http://www.crc.ricoh.com/~gormish/jpeg2000conformance/
|
|
@ -1,3 +1,11 @@
|
|||
|
||||
# **************************************************
|
||||
# NOTE : This README is obsolete. We strongly
|
||||
# recommend using the cmake tool (see README.cmake)
|
||||
# to build openJPEG.
|
||||
# **************************************************
|
||||
|
||||
|
||||
Release Notes
|
||||
--------------
|
||||
This version of the library has been tested under the following OS:
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
|
||||
# **************************************************
|
||||
# NOTE : This README is obsolete. We strongly
|
||||
# recommend using the cmake tool (see README.cmake)
|
||||
# to build openJPEG.
|
||||
# **************************************************
|
||||
|
||||
|
||||
Release Notes
|
||||
--------------
|
||||
This version of the library has been tested under OSX 10.3 using gcc 3.3.
|
||||
|
|
Loading…
Reference in New Issue