summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2006-01-31 14:41:40 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2006-01-31 14:41:40 +0000
commit75cf4f090681ad60855418b16fc0b76e522a5bab (patch)
treeee6cbd86158c7501fb8e77983f938db9b576eaf8
parent85c327861adcbdf310a1c1219d1f45b93dfbb55c (diff)
STYLE: More verbose comments
-rw-r--r--libopenjpeg/CMakeLists.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/libopenjpeg/CMakeLists.txt b/libopenjpeg/CMakeLists.txt
index cd7b6786..b843a65f 100644
--- a/libopenjpeg/CMakeLists.txt
+++ b/libopenjpeg/CMakeLists.txt
@@ -23,16 +23,25 @@ SET(OpenJPEG_SRCS
tgt.c
)
+# Prepare the .def file (Module definition)
+# depending on wether we are:
+# 1. Building a dll (shared lib)
+# 2. Wether we are using cl or bcc32 (underscore convention)
IF(WIN32 AND BUILD_SHARED_LIBS)
SET(UNDERSCORE)
+ # Borland expect symbol to start with _
IF(BORLAND)
SET(UNDERSCORE "_")
ENDIF(BORLAND)
+ # Borland will by default use a .def file if present in
+ # the binary directory
CONFIGURE_FILE(
${OPENJPEG_SOURCE_DIR}/libopenjpeg/openjpeg.def.in
${OPENJPEG_BINARY_DIR}/libopenjpeg/openjpeg.def
@ONLY IMMEDIATE
)
+ # You can directly pass a .def file to cl this is
+ # recognized
IF(NOT BORLAND)
SET(OpenJPEG_SRCS ${OpenJPEG_SRCS}
${OPENJPEG_BINARY_DIR}/libopenjpeg/openjpeg.def