[pcre-dev] Current state of cmake support

トップ ページ
このメッセージを削除
著者: Christian Ehrlicher
日付:  
To: Pcre-dev
題目: [pcre-dev] Current state of cmake support
Hi,

Someone from the list asked me to join the list so I can help you with some problems with pcre & cmake.
It's nice that you're interested in cmake support - I just added basic support for cmake to compile it for kde4/windows but then lost track because of various changes in the internal structure of pcre.

Here are some answers:
- someone complains about absolute paths in Makefiles: That's how it needs to be. There's no reason to not use absolute paths at all. If you want to have more arguments against absolute paths, search the cmake mailing list
- libbz2 and libz support is somewhat buggy - I fixed them the way it should be (so it's also platform independent) Readline support needs some enhancements too (but cmake currently does not provide a FindReadline.cmake - maybe we should use this from kdeedu)
- the static linking problem is because the linker is searching for libpcreposix.a / libpcreposix.dll --> SET_TARGET_PROPERTIES(pcre pcreposix PROPERTIES PREFIX "") should only be used for MSVC
- pcredemo - added
- dftables - fixed, added option
- cmake defines not much HAVE_foo_H. This is due the stupidness of automake's autoheader tool. It just adds HAVE_foo_H for cases where it's not needed just because it's not used anywhere inside the sourcecode.
- some windows defines are missing - that's because they were added after 7.0
- the use of msys - I don't know why someone would use msys when cmake can produce native mingw makefiles. Therefore I don't care much.

The attached CMakeLists.txt is not tested on windows - will do this later today.


HTH
Christian Ehrlicher

--
Psssst! Schon vom neuen GMX MultiMessenger gehört?
Der kann`s mit allen: http://www.gmx.net/de/go/multimessenger?did=10
# CMakeLists.txt
#
#
# This file allows building PCRE with the CMake configuration and build
# tool. Download CMake in source or binary form from http://www.cmake.org/
#
# Original listfile by Christian Ehrlicher <Ch.Ehrlicher@???>
# Refined and expanded by Daniel Richard G. <skunk@???>
# 2007-09-14 mod by Sheri so 7.4 supported configuration options can be entered
# 2007-09-19 Adjusted by PH to retain previous default settings
# 2007-12-26 (a) On UNIX, use names libpcre instead of just pcre
#            (b) Ensure pcretest and pcregrep link with the local library,
#                not a previously-installed one.
#            (c) Add PCRE_SUPPORT_LIBREADLINE, PCRE_SUPPORT_LIBZ, and
#                PCRE_SUPPORT_LIBBZ2.
#


PROJECT(PCRE C CXX)

CMAKE_MINIMUM_REQUIRED(VERSION 2.4.6)

# external packages
FIND_PACKAGE( BZip2 )
FIND_PACKAGE( ZLIB )

# Configuration checks

INCLUDE(CheckIncludeFile)
INCLUDE(CheckIncludeFileCXX)
INCLUDE(CheckFunctionExists)
INCLUDE(CheckTypeSize)

CHECK_INCLUDE_FILE(dirent.h    HAVE_DIRENT_H)
CHECK_INCLUDE_FILE(unistd.h    HAVE_UNISTD_H)
CHECK_INCLUDE_FILE(sys/stat.h    HAVE_SYS_STAT_H)
CHECK_INCLUDE_FILE(sys/types.h    HAVE_SYS_TYPES_H)


CHECK_INCLUDE_FILE(readline/history.h HAVE_READLINE_HISTORY_H)
CHECK_INCLUDE_FILE(readline/readline.h HAVE_READLINE_READLINE_H)

CHECK_INCLUDE_FILE_CXX(type_traits.h        HAVE_TYPE_TRAITS_H)
CHECK_INCLUDE_FILE_CXX(bits/type_traits.h    HAVE_BITS_TYPE_TRAITS_H)


CHECK_FUNCTION_EXISTS(bcopy    HAVE_BCOPY)
CHECK_FUNCTION_EXISTS(memmove    HAVE_MEMMOVE)
CHECK_FUNCTION_EXISTS(strerror    HAVE_STRERROR)


CHECK_TYPE_SIZE("long long"        LONG_LONG)
CHECK_TYPE_SIZE("unsigned long long"    UNSIGNED_LONG_LONG)


# User-configurable options
#
# (Note: CMakeSetup displays these in alphabetical order, regardless of
# the order we use here)

SET(BUILD_SHARED_LIBS OFF CACHE BOOL
    "Build shared libraries instead of static ones.")


OPTION(PCRE_BUILD_PCRECPP "Build the PCRE C++ library (pcrecpp)." ON)

SET(PCRE_EBCDIC OFF CACHE BOOL
    "Use EBCDIC coding instead of ASCII. (This is rarely used outside of mainframe systems)")


SET(PCRE_LINK_SIZE "2" CACHE STRING
    "Internal link size (2, 3 or 4 allowed). See LINK_SIZE in config.h.in for details.")


SET(PCRE_MATCH_LIMIT "10000000" CACHE STRING
    "Default limit on internal looping. See MATCH_LIMIT in config.h.in for details.")


SET(PCRE_MATCH_LIMIT_RECURSION "MATCH_LIMIT" CACHE STRING
    "Default limit on internal recursion. See MATCH_LIMIT_RECURSION in config.h.in for details.")


SET(PCRE_NEWLINE "LF" CACHE STRING
    "What to recognize as a newline (one of CR, LF, CRLF, ANY, ANYCRLF).")


SET(PCRE_NO_RECURSE OFF CACHE BOOL
    "If ON, then don't use stack recursion when matching. See NO_RECURSE in config.h.in for details.")


SET(PCRE_POSIX_MALLOC_THRESHOLD "10" CACHE STRING
    "Threshold for malloc() usage. See POSIX_MALLOC_THRESHOLD in config.h.in for details.")


SET(PCRE_SUPPORT_UNICODE_PROPERTIES OFF CACHE BOOL
    "Enable support for Unicode properties. (If set, UTF-8 support will be enabled as well)")


SET(PCRE_SUPPORT_UTF8 OFF CACHE BOOL
    "Enable support for the Unicode UTF-8 encoding.")


SET(PCRE_SUPPORT_BSR_ANYCRLF OFF CACHE BOOL
    "ON=Backslash-R matches only LF CR and CRLF, OFF=Backslash-R matches all Unicode Linebreaks")


IF(BZIP2_FOUND)
OPTION (PCRE_SUPPORT_LIBBZ2 "Enable support for linking pcregrep with libbz2." ON)
ENDIF(BZIP2_FOUND)

IF(ZLIB_FOUND)
OPTION (PCRE_SUPPORT_LIBZ "Enable support for linking pcregrep with libz." ON)
ENDIF(ZLIB_FOUND)

SET (PCRE_SUPPORT_LIBREADLINE OFF CACHE BOOL
    "Enable support for linking pcretest with libreadline.")


# Prepare build configuration

SET(pcre_have_type_traits 0)
SET(pcre_have_bits_type_traits 0)

IF(HAVE_TYPE_TRAITS_H)
    SET(pcre_have_type_traits 1)
ENDIF(HAVE_TYPE_TRAITS_H)


IF(HAVE_BITS_TYPE_TRAITS_H)
    SET(pcre_have_bits_type_traits 1)
ENDIF(HAVE_BITS_TYPE_TRAITS_H)


SET(pcre_have_long_long 0)
SET(pcre_have_ulong_long 0)

IF(HAVE_LONG_LONG)
    SET(pcre_have_long_long 1)
ENDIF(HAVE_LONG_LONG)


IF(HAVE_UNSIGNED_LONG_LONG)
    SET(pcre_have_ulong_long 1)
ENDIF(HAVE_UNSIGNED_LONG_LONG)


IF(NOT BUILD_SHARED_LIBS)
    SET(PCRE_STATIC 1)
ENDIF(NOT BUILD_SHARED_LIBS)


IF(PCRE_SUPPORT_BSR_ANYCRLF)
    SET(BSR_ANYCRLF 1)
ENDIF(PCRE_SUPPORT_BSR_ANYCRLF)


IF(PCRE_SUPPORT_UTF8 OR PCRE_SUPPORT_UNICODE_PROPERTIES)
    SET(SUPPORT_UTF8 1)
ENDIF(PCRE_SUPPORT_UTF8 OR PCRE_SUPPORT_UNICODE_PROPERTIES)


IF(PCRE_SUPPORT_UNICODE_PROPERTIES)
    SET(SUPPORT_UCP 1)
ENDIF(PCRE_SUPPORT_UNICODE_PROPERTIES)


IF(PCRE_SUPPORT_LIBREADLINE)
        SET(SUPPORT_LIBREADLINE 1)
        SET(PCRETEST_LIBS readline)
ENDIF(PCRE_SUPPORT_LIBREADLINE)


IF(PCRE_SUPPORT_LIBZ)
        SET(SUPPORT_LIBZ 1)
        SET(PCREGREP_LIBS ${PCREGREP_LIBS} ${ZLIB_LIBRARIES})
ENDIF(PCRE_SUPPORT_LIBZ)


IF(PCRE_SUPPORT_LIBBZ2)
        SET(SUPPORT_LIBBZ2 1)
        SET(PCREGREP_LIBS ${PCREGREP_LIBS} ${BZIP2_LIBRARIES})
ENDIF(PCRE_SUPPORT_LIBBZ2)


SET(NEWLINE "")

IF(PCRE_NEWLINE STREQUAL "LF")
    SET(NEWLINE "10")
ENDIF(PCRE_NEWLINE STREQUAL "LF")
IF(PCRE_NEWLINE STREQUAL "CR")
    SET(NEWLINE "13")
ENDIF(PCRE_NEWLINE STREQUAL "CR")
IF(PCRE_NEWLINE STREQUAL "CRLF")
    SET(NEWLINE "3338")
ENDIF(PCRE_NEWLINE STREQUAL "CRLF")
IF(PCRE_NEWLINE STREQUAL "ANY")
    SET(NEWLINE "-1")
ENDIF(PCRE_NEWLINE STREQUAL "ANY")
IF(PCRE_NEWLINE STREQUAL "ANYCRLF")
    SET(NEWLINE "-2")
ENDIF(PCRE_NEWLINE STREQUAL "ANYCRLF")


IF(NEWLINE STREQUAL "")
    MESSAGE(FATAL_ERROR "The PCRE_NEWLINE variable must be set to one of the following values: \"LF\", \"CR\", \"CRLF\", \"ANY\", \"ANYCRLF\".")
ENDIF(NEWLINE STREQUAL "")


IF(PCRE_EBCDIC)
    SET(EBCDIC 1)
ENDIF(PCRE_EBCDIC)


IF(PCRE_NO_RECURSE)
    SET(NO_RECURSE 1)
ENDIF(PCRE_NO_RECURSE)


# Output files

CONFIGURE_FILE(config-cmake.h.in
               ${CMAKE_BINARY_DIR}/config.h
               @ONLY)


CONFIGURE_FILE(pcre.h.generic
               ${CMAKE_BINARY_DIR}/pcre.h
               COPYONLY)


# What about pcre-config and libpcre.pc?

IF(PCRE_BUILD_PCRECPP)
    CONFIGURE_FILE(pcre_stringpiece.h.in
               ${CMAKE_BINARY_DIR}/pcre_stringpiece.h
               @ONLY)


    CONFIGURE_FILE(pcrecpparg.h.in
               ${CMAKE_BINARY_DIR}/pcrecpparg.h
               @ONLY)
ENDIF(PCRE_BUILD_PCRECPP)


# Character table generation

OPTION(PCRE_REBUILD_CHARTABLES "Rebuild char tables" OFF)
IF(PCRE_REBUILD_CHARTABLES)
ADD_EXECUTABLE(dftables dftables.c)

GET_TARGET_PROPERTY(DFTABLES_EXE dftables LOCATION)

  ADD_CUSTOM_COMMAND(
    COMMENT "Generating character tables (pcre_chartables.c) for current locale"
    DEPENDS dftables
    COMMAND ${DFTABLES_EXE}
    ARGS    ${CMAKE_BINARY_DIR}/pcre_chartables.c
    OUTPUT    ${CMAKE_BINARY_DIR}/pcre_chartables.c
  )
ELSE(PCRE_REBUILD_CHARTABLES)
  CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/pcre_chartables.c.dist
                    ${CMAKE_BINARY_DIR}/pcre_chartables.c
                    COPYONLY)
ENDIF(PCRE_REBUILD_CHARTABLES)


# Source code

SET(PCRE_HEADERS ${CMAKE_BINARY_DIR}/pcre.h)

SET(PCRE_SOURCES
${CMAKE_BINARY_DIR}/pcre_chartables.c
pcre_compile.c
pcre_config.c
pcre_dfa_exec.c
pcre_exec.c
pcre_fullinfo.c
pcre_get.c
pcre_globals.c
pcre_info.c
pcre_newline.c
pcre_maketables.c
pcre_ord2utf8.c
pcre_refcount.c
pcre_study.c
pcre_tables.c
pcre_try_flipped.c
pcre_ucp_searchfuncs.c
pcre_valid_utf8.c
pcre_version.c
pcre_xclass.c
)
message(STATUS ${PCRE_SOURCES})

SET(PCREPOSIX_HEADERS pcreposix.h)

SET(PCREPOSIX_SOURCES pcreposix.c)

SET(PCRECPP_HEADERS
pcrecpp.h
pcre_scanner.h
${CMAKE_BINARY_DIR}/pcrecpparg.h
${CMAKE_BINARY_DIR}/pcre_stringpiece.h
)

SET(PCRECPP_SOURCES
    pcrecpp.cc
    pcre_scanner.cc
    pcre_stringpiece.cc
)


# Build setup

ADD_DEFINITIONS(-DHAVE_CONFIG_H)

IF(MSVC)
    ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE)
ENDIF(MSVC)


SET(CMAKE_INCLUDE_CURRENT_DIR 1)
# needed to make sure to not link debug libs
# against release libs and vice versa
IF(WIN32)
SET(CMAKE_DEBUG_POSTFIX "d")
ENDIF(WIN32)

# Libraries

ADD_LIBRARY(pcre ${PCRE_HEADERS} ${PCRE_SOURCES})
IF(PCRE_REBUILD_CHARTABLES)
ENDIF(PCRE_REBUILD_CHARTABLES)

ADD_LIBRARY(pcreposix ${PCREPOSIX_HEADERS} ${PCREPOSIX_SOURCES})
TARGET_LINK_LIBRARIES(pcreposix pcre)

IF(MSVC)
  SET_TARGET_PROPERTIES(pcre pcreposix
                             PROPERTIES PREFIX ""
)
ENDIF(MSVC)


IF(PCRE_BUILD_PCRECPP)
  ADD_LIBRARY(pcrecpp ${PCRECPP_HEADERS} ${PCRECPP_SOURCES})
  TARGET_LINK_LIBRARIES(pcrecpp pcre)
  IF(MINGW)
    # to avoid conflicts with pcrecpp from msvc - do we really need this
    # now that we use 'lib' prefix for mingw too?
    SET_TARGET_PROPERTIES(pcrecpp PROPERTIES PREFIX "mingw-")
  ENDIF(MINGW)
ENDIF(PCRE_BUILD_PCRECPP)


# Executables

ADD_EXECUTABLE(pcretest pcretest.c)
TARGET_LINK_LIBRARIES(pcretest pcreposix ${PCRETEST_LIBS})

ADD_EXECUTABLE(pcregrep pcregrep.c)
TARGET_LINK_LIBRARIES(pcregrep pcreposix ${PCREGREP_LIBS})

ADD_EXECUTABLE(pcredemo pcredemo.c)
TARGET_LINK_LIBRARIES(pcredemo pcreposix)

IF(PCRE_BUILD_PCRECPP)
    ADD_EXECUTABLE(pcrecpp_unittest pcrecpp_unittest.cc)
    TARGET_LINK_LIBRARIES(pcrecpp_unittest pcrecpp)


    ADD_EXECUTABLE(pcre_scanner_unittest pcre_scanner_unittest.cc)
    TARGET_LINK_LIBRARIES(pcre_scanner_unittest pcrecpp)


    ADD_EXECUTABLE(pcre_stringpiece_unittest pcre_stringpiece_unittest.cc)
    TARGET_LINK_LIBRARIES(pcre_stringpiece_unittest pcrecpp)
ENDIF(PCRE_BUILD_PCRECPP)


# Testing

ENABLE_TESTING()

GET_TARGET_PROPERTY(PCREGREP_EXE pcregrep DEBUG_LOCATION)
GET_TARGET_PROPERTY(PCRETEST_EXE pcretest DEBUG_LOCATION)

# Write out a CTest configuration file that sets some needed environment
# variables for the test scripts.
#
FILE(WRITE ${CMAKE_BINARY_DIR}/CTestCustom.ctest
"# This is a generated file.
SET(ENV{srcdir} ${CMAKE_SOURCE_DIR})
SET(ENV{pcregrep} ${PCREGREP_EXE})
SET(ENV{pcretest} ${PCRETEST_EXE})
")

IF(UNIX)
    ADD_TEST(pcre_test    ${CMAKE_SOURCE_DIR}/RunTest)
    ADD_TEST(pcre_grep_test ${CMAKE_SOURCE_DIR}/RunGrepTest)
ENDIF(UNIX)
IF(WIN32)
    ADD_TEST(pcre_test cmd /C ${CMAKE_SOURCE_DIR}/RunTest.bat)
ENDIF(WIN32)


GET_TARGET_PROPERTY(PCRECPP_UNITTEST_EXE
                    pcrecpp_unittest
                    DEBUG_LOCATION)


GET_TARGET_PROPERTY(PCRE_SCANNER_UNITTEST_EXE
                    pcre_scanner_unittest
                    DEBUG_LOCATION)


GET_TARGET_PROPERTY(PCRE_STRINGPIECE_UNITTEST_EXE
                    pcre_stringpiece_unittest
                    DEBUG_LOCATION)


ADD_TEST(pcrecpp_test          ${PCRECPP_UNITTEST_EXE})
ADD_TEST(pcre_scanner_test     ${PCRE_SCANNER_UNITTEST_EXE})
ADD_TEST(pcre_stringpiece_test ${PCRE_STRINGPIECE_UNITTEST_EXE})


# Installation

SET(CMAKE_INSTALL_ALWAYS 1)

INSTALL(TARGETS pcre pcreposix pcregrep pcretest
        RUNTIME DESTINATION bin
        LIBRARY DESTINATION lib
        ARCHIVE DESTINATION lib)


INSTALL(FILES ${PCRE_HEADERS} ${PCREPOSIX_HEADERS} DESTINATION include)

FILE(GLOB html ${CMAKE_SOURCE_DIR}/doc/html/*.html)
FILE(GLOB man1 ${CMAKE_SOURCE_DIR}/doc/*.1)
FILE(GLOB man3 ${CMAKE_SOURCE_DIR}/doc/*.3)

IF(PCRE_BUILD_PCRECPP)
    INSTALL(TARGETS pcrecpp
        RUNTIME DESTINATION bin
        LIBRARY DESTINATION lib
        ARCHIVE DESTINATION lib)
    INSTALL(FILES ${PCRECPP_HEADERS} DESTINATION include)
ELSE(PCRE_BUILD_PCRECPP)
    # Remove pcrecpp.3
    FOREACH(man ${man3})
        GET_FILENAME_COMPONENT(man_tmp ${man} NAME)
        IF(NOT man_tmp STREQUAL "pcrecpp.3")
            SET(man3_new ${man3} ${man})
        ENDIF(NOT man_tmp STREQUAL "pcrecpp.3")
    ENDFOREACH(man ${man3})
    SET(man3 ${man3_new})
ENDIF(PCRE_BUILD_PCRECPP)


INSTALL(FILES ${man1} DESTINATION man/man1)
INSTALL(FILES ${man3} DESTINATION man/man3)
INSTALL(FILES ${html} DESTINATION share/doc/pcre/html)

MESSAGE(STATUS "")
MESSAGE(STATUS "")
MESSAGE(STATUS "pcre-7.5 configuration summary:")
MESSAGE(STATUS "")
MESSAGE(STATUS " Install prefix .................. : " ${CMAKE_INSTALL_PREFIX})
MESSAGE(STATUS " C compiler ...................... : " ${CMAKE_C_COMPILER})
MESSAGE(STATUS " C++ compiler .................... : " ${CMAKE_CXX_COMPILER})
MESSAGE(STATUS " C compiler flags ................ : " ${CMAKE_C_FLAGS}) #FIXME
MESSAGE(STATUS " C compiler ...................... : " ${CMAKE_CXX_FLAGS}) #FIXME
MESSAGE(STATUS "")
MESSAGE(STATUS " Build C++ library ............... : " ${PCRE_BUILD_PCRECPP})
MESSAGE(STATUS " Enable UTF-8 support ............ : " ${PCRE_SUPPORT_UNICODE_PROPERTIES})
MESSAGE(STATUS " Unicode properties .............. : " ${PCRE_SUPPORT_UNICODE_PROPERTIES})
MESSAGE(STATUS " Newline char/sequence ........... : " "0x"${NEWLINE})
MESSAGE(STATUS " \\R matches only ANYCRLF ......... : " ${PCRE_SUPPORT_BSR_ANYCRLF})
MESSAGE(STATUS " EBCDIC coding ................... : " ${PCRE_EBCDIC})
MESSAGE(STATUS " Rebuild char tables ............. : " ${PCRE_REBUILD_CHARTABLES})
MESSAGE(STATUS " Use stack recursion ............. : " ${PCRE_NO_RECURSE})
MESSAGE(STATUS " POSIX mem threshold ............. : " ${PCRE_POSIX_MALLOC_THRESHOLD})
MESSAGE(STATUS " Internal link size .............. : " ${PCRE_LINK_SIZE})
MESSAGE(STATUS " Match limit ..................... : " ${PCRE_MATCH_LIMIT})
MESSAGE(STATUS " Match limit recursion ........... : " ${PCRE_MATCH_LIMIT_RECURSION})
MESSAGE(STATUS " Build shared libs ............... : " ${BUILD_SHARED_LIBS})
MESSAGE(STATUS " Build static libs ............... : " ${PCRE_STATIC})
IF(ZLIB_FOUND)
MESSAGE(STATUS " Link pcregrep with libz ......... : " ${PCRE_SUPPORT_LIBZ})
ELSE(ZLIB_FOUND)
MESSAGE(STATUS " Link pcregrep with libz ......... : zlib libraries not found!" )
ENDIF(ZLIB_FOUND)
IF(BZIP2_FOUND)
MESSAGE(STATUS " Link pcregrep with libbz2 ....... : " ${PCRE_SUPPORT_LIBBZ2})
ELSE(BZIP2_FOUND)
MESSAGE(STATUS " Link pcregrep with libbz2 ....... : bzip2 libraries not found!" )
ENDIF(BZIP2_FOUND)
MESSAGE(STATUS " Link pcretest with libreadline .. : " ${PCRE_SUPPORT_LIBREADLINE})
MESSAGE(STATUS "")

# end CMakeLists.txt