From 2d09cbfd21f20d53334fd8036781dfbf96ee49d0 Mon Sep 17 00:00:00 2001 From: Mathieu Malaterre Date: Fri, 28 Sep 2012 09:57:19 +0000 Subject: [PATCH] [trunk] FolderReorgProposal task: rename JP3D CLI tools Update issue 177 --- src/bin/jp3d/CMakeLists.txt | 2 +- src/bin/jp3d/{volume_to_jp3d.c => opj_jp3d_compress.c} | 0 src/bin/jp3d/{jp3d_to_volume.c => opj_jp3d_decompress.c} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename src/bin/jp3d/{volume_to_jp3d.c => opj_jp3d_compress.c} (100%) rename src/bin/jp3d/{jp3d_to_volume.c => opj_jp3d_decompress.c} (100%) diff --git a/src/bin/jp3d/CMakeLists.txt b/src/bin/jp3d/CMakeLists.txt index a4742b7c..d1bcca9b 100644 --- a/src/bin/jp3d/CMakeLists.txt +++ b/src/bin/jp3d/CMakeLists.txt @@ -24,7 +24,7 @@ IF(WIN32) ENDIF(WIN32) # Loop over all executables: -FOREACH(exe jp3d_to_volume volume_to_jp3d) +FOREACH(exe opj_jp3d_compress opj_jp3d_decompress) ADD_EXECUTABLE(${exe} ${exe}.c ${common_SRCS}) TARGET_LINK_LIBRARIES(${exe} openjp3d) # On unix you need to link to the math library: diff --git a/src/bin/jp3d/volume_to_jp3d.c b/src/bin/jp3d/opj_jp3d_compress.c similarity index 100% rename from src/bin/jp3d/volume_to_jp3d.c rename to src/bin/jp3d/opj_jp3d_compress.c diff --git a/src/bin/jp3d/jp3d_to_volume.c b/src/bin/jp3d/opj_jp3d_decompress.c similarity index 100% rename from src/bin/jp3d/jp3d_to_volume.c rename to src/bin/jp3d/opj_jp3d_decompress.c