STYLE: More verbose comments
This commit is contained in:
parent
85c327861a
commit
75cf4f0906
|
@ -23,16 +23,25 @@ SET(OpenJPEG_SRCS
|
||||||
tgt.c
|
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)
|
IF(WIN32 AND BUILD_SHARED_LIBS)
|
||||||
SET(UNDERSCORE)
|
SET(UNDERSCORE)
|
||||||
|
# Borland expect symbol to start with _
|
||||||
IF(BORLAND)
|
IF(BORLAND)
|
||||||
SET(UNDERSCORE "_")
|
SET(UNDERSCORE "_")
|
||||||
ENDIF(BORLAND)
|
ENDIF(BORLAND)
|
||||||
|
# Borland will by default use a .def file if present in
|
||||||
|
# the binary directory
|
||||||
CONFIGURE_FILE(
|
CONFIGURE_FILE(
|
||||||
${OPENJPEG_SOURCE_DIR}/libopenjpeg/openjpeg.def.in
|
${OPENJPEG_SOURCE_DIR}/libopenjpeg/openjpeg.def.in
|
||||||
${OPENJPEG_BINARY_DIR}/libopenjpeg/openjpeg.def
|
${OPENJPEG_BINARY_DIR}/libopenjpeg/openjpeg.def
|
||||||
@ONLY IMMEDIATE
|
@ONLY IMMEDIATE
|
||||||
)
|
)
|
||||||
|
# You can directly pass a .def file to cl this is
|
||||||
|
# recognized
|
||||||
IF(NOT BORLAND)
|
IF(NOT BORLAND)
|
||||||
SET(OpenJPEG_SRCS ${OpenJPEG_SRCS}
|
SET(OpenJPEG_SRCS ${OpenJPEG_SRCS}
|
||||||
${OPENJPEG_BINARY_DIR}/libopenjpeg/openjpeg.def
|
${OPENJPEG_BINARY_DIR}/libopenjpeg/openjpeg.def
|
||||||
|
|
Loading…
Reference in New Issue