2006-01-25 10:23:17 +01:00
|
|
|
INCLUDE_REGULAR_EXPRESSION("^.*$")
|
2006-01-25 17:32:48 +01:00
|
|
|
# Defines the source code for the library
|
2006-01-25 19:18:09 +01:00
|
|
|
SET(OpenJPEG_SRCS
|
2006-01-25 10:23:17 +01:00
|
|
|
bio.c
|
|
|
|
cio.c
|
|
|
|
dwt.c
|
|
|
|
event.c
|
|
|
|
fix.c
|
|
|
|
image.c
|
|
|
|
int.c
|
|
|
|
j2k.c
|
|
|
|
j2k_lib.c
|
|
|
|
jp2.c
|
|
|
|
jpt.c
|
|
|
|
mct.c
|
|
|
|
mqc.c
|
|
|
|
openjpeg.c
|
|
|
|
pi.c
|
|
|
|
raw.c
|
|
|
|
t1.c
|
|
|
|
t2.c
|
|
|
|
tcd.c
|
|
|
|
tgt.c
|
|
|
|
)
|
|
|
|
|
2006-01-31 15:41:40 +01:00
|
|
|
# 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)
|
2006-01-31 15:20:06 +01:00
|
|
|
IF(WIN32 AND BUILD_SHARED_LIBS)
|
|
|
|
SET(UNDERSCORE)
|
2006-01-31 15:41:40 +01:00
|
|
|
# Borland expect symbol to start with _
|
2006-01-31 15:20:06 +01:00
|
|
|
IF(BORLAND)
|
|
|
|
SET(UNDERSCORE "_")
|
|
|
|
ENDIF(BORLAND)
|
2006-01-31 15:41:40 +01:00
|
|
|
# Borland will by default use a .def file if present in
|
|
|
|
# the binary directory
|
2006-01-31 15:20:06 +01:00
|
|
|
CONFIGURE_FILE(
|
|
|
|
${OPENJPEG_SOURCE_DIR}/libopenjpeg/openjpeg.def.in
|
|
|
|
${OPENJPEG_BINARY_DIR}/libopenjpeg/openjpeg.def
|
|
|
|
@ONLY IMMEDIATE
|
|
|
|
)
|
2006-01-31 15:41:40 +01:00
|
|
|
# You can directly pass a .def file to cl this is
|
|
|
|
# recognized
|
2006-01-31 20:45:17 +01:00
|
|
|
IF(NOT BORLAND AND NOT MINGW)
|
2006-01-31 15:20:06 +01:00
|
|
|
SET(OpenJPEG_SRCS ${OpenJPEG_SRCS}
|
|
|
|
${OPENJPEG_BINARY_DIR}/libopenjpeg/openjpeg.def
|
|
|
|
)
|
2006-01-31 20:45:17 +01:00
|
|
|
ENDIF(NOT BORLAND AND NOT MINGW)
|
2006-01-31 15:20:06 +01:00
|
|
|
ENDIF(WIN32 AND BUILD_SHARED_LIBS)
|
2006-01-25 10:23:17 +01:00
|
|
|
|
2006-01-25 17:32:48 +01:00
|
|
|
# Create the library
|
2006-01-25 19:18:09 +01:00
|
|
|
ADD_LIBRARY(${OPJ_PREFIX}openjpeg ${OpenJPEG_SRCS})
|
2006-01-25 10:23:17 +01:00
|
|
|
|
2006-01-25 19:18:09 +01:00
|
|
|
# Install library
|
|
|
|
INSTALL_TARGETS(/lib/ ${OPJ_PREFIX}openjpeg)
|
2006-01-31 15:20:06 +01:00
|
|
|
|