diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2007-09-06 11:01:00 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2007-09-06 11:01:00 +0000 |
| commit | 86da5c258945dcf27056a582487e7b1b8dfbeda7 (patch) | |
| tree | fcd246764bb9025c4fcace7e5d4fbb640e9b7df6 | |
| parent | 23891ede861ae3feab879c421a0ee1309ad2b4af (diff) | |
ENH: CMake: output all executable/libs into one single directory
| -rw-r--r-- | CMakeLists.txt | 6 | ||||
| -rw-r--r-- | ChangeLog | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9cedfe34..7f2965bf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,6 +35,12 @@ SET(OPENJPEG_VERSION OPTION(BUILD_SHARED_LIBS "Build OpenJPEG with shared libraries." OFF) #----------------------------------------------------------------------------- +SET (EXECUTABLE_OUTPUT_PATH ${OPENJPEG_BINARY_DIR}/bin CACHE PATH "Single output directory for building all executables.") +SET (LIBRARY_OUTPUT_PATH ${OPENJPEG_BINARY_DIR}/bin CACHE PATH "Single output directory for building all libraries.") +MARK_AS_ADVANCED(LIBRARY_OUTPUT_PATH EXECUTABLE_OUTPUT_PATH) + + +#----------------------------------------------------------------------------- # For the codec... OPTION(BUILD_EXAMPLES "Build the Examples (codec...)." OFF) @@ -7,6 +7,7 @@ What's New for OpenJPEG September 6, 2007 * [Mathieu Malaterre] CMake: start compiling mj2, jpwl and jp3d +* [Mathieu Malaterre] CMake: output all executable/libs into one single directory September 4, 2007 + [GB] Added some fields in the codestream_info structure: they are used to record the position of single tile parts. Changed also the write_index function in the codec, to reflect the presence of this new information. |
