summaryrefslogtreecommitdiff
path: root/codec/CMakeLists.txt
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2007-09-06 16:49:15 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2007-09-06 16:49:15 +0000
commit53471a76f1291ce607ee48bea158dbebe871ef3a (patch)
treeccaf3da4b56948f198eb380bd56a4b9e67ad34c8 /codec/CMakeLists.txt
parent8ac5e7023c18f589f8be996e0ce1304012d22499 (diff)
ENH: Fix unitialized read in img_fol (we may need a smarter initialize than memset)
Diffstat (limited to 'codec/CMakeLists.txt')
-rw-r--r--codec/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/codec/CMakeLists.txt b/codec/CMakeLists.txt
index a381840c..363c8fd8 100644
--- a/codec/CMakeLists.txt
+++ b/codec/CMakeLists.txt
@@ -42,7 +42,7 @@ FIND_PACKAGE(TIFF REQUIRED)
FOREACH(exe j2k_to_image image_to_j2k)
ADD_EXECUTABLE(${exe} ${exe}.c ${common_SRCS})
TARGET_LINK_LIBRARIES(${exe} ${OPJ_PREFIX}openjpeg ${TIFF_LIBRARIES})
- ADD_TEST(${exe} ${exe})
+ ADD_TEST(${exe} ${EXECUTABLE_OUTPUT_PATH}/${exe})
# On unix you need to link to the math library:
IF(UNIX)
TARGET_LINK_LIBRARIES(${exe} m)