CMake/Utilities/cmexpat/CMakeLists.txt
Brad King 9737ea074a Install third-party utility copyright notices
Some of our third-party utilities have licenses that require their
copyright and license notices to be distributed with binary forms.  This
commit adds installation rules to include these notices with installed
CMake documentation.
2009-09-28 11:36:17 -04:00

36 lines
984 B
CMake

PROJECT(CMEXPAT)
INCLUDE_REGULAR_EXPRESSION("^.*$")
SET(expat_SRCS
xmlparse.c
xmltok.c
xmlrole.c
)
INCLUDE(${CMAKE_ROOT}/Modules/TestBigEndian.cmake)
TEST_BIG_ENDIAN(CMEXPAT_BIGENDIAN)
INCLUDE_DIRECTORIES(
"${CMEXPAT_BINARY_DIR}/.."
)
IF(WIN32)
IF(NOT BUILD_SHARED_LIBS)
SET (CM_EXPAT_STATIC 1)
ENDIF(NOT BUILD_SHARED_LIBS)
ENDIF(WIN32)
CONFIGURE_FILE(${CMEXPAT_SOURCE_DIR}/expatConfig.h.in
${CMEXPAT_BINARY_DIR}/expatConfig.h)
CONFIGURE_FILE(${CMEXPAT_SOURCE_DIR}/expatDllConfig.h.in
${CMEXPAT_BINARY_DIR}/expatDllConfig.h)
CONFIGURE_FILE(${CMEXPAT_SOURCE_DIR}/.NoDartCoverage
${CMEXPAT_BINARY_DIR}/.NoDartCoverage)
CONFIGURE_FILE(${CMEXPAT_SOURCE_DIR}/cm_expat_mangle.h
${CMEXPAT_BINARY_DIR}/cm_expat_mangle.h)
CONFIGURE_FILE(${CMEXPAT_SOURCE_DIR}/expat.h
${CMEXPAT_BINARY_DIR}/expat.h)
ADD_LIBRARY(cmexpat ${expat_SRCS})
INSTALL(FILES COPYING DESTINATION ${CMake_DOC_DEST}/cmexpat)