removed nodes from CMake's BLENDER_LINK_LIBS, rewrote find-pcre using own template.
This commit is contained in:
@@ -1,43 +1,69 @@
|
|||||||
# - Try to find the PCRE regular expression library
|
# - Find PCRE library
|
||||||
# Once done this will define
|
# Find the native PCRE includes and library
|
||||||
|
# This module defines
|
||||||
|
# PCRE_INCLUDE_DIRS, where to find pcre.h, Set when
|
||||||
|
# PCRE_INCLUDE_DIR is found.
|
||||||
|
# PCRE_LIBRARIES, libraries to link against to use PCRE.
|
||||||
|
# PCRE_ROOT_DIR, The base directory to search for PCRE.
|
||||||
|
# This can also be an environment variable.
|
||||||
|
# PCRE_FOUND, If false, do not try to use PCRE.
|
||||||
#
|
#
|
||||||
# PCRE_FOUND - system has the PCRE library
|
# also defined, but not for general use are
|
||||||
# PCRE_INCLUDE_DIR - the PCRE include directory
|
# PCRE_LIBRARY, where to find the PCRE library.
|
||||||
# PCRE_LIBRARIES - The libraries needed to use PCRE
|
|
||||||
|
|
||||||
# Copyright (c) 2006, Alexander Neundorf, <neundorf@kde.org>
|
#=============================================================================
|
||||||
|
# Copyright 2011 Blender Foundation.
|
||||||
#
|
#
|
||||||
# Redistribution and use is allowed according to the terms of the BSD license.
|
# Distributed under the OSI-approved BSD License (the "License");
|
||||||
|
# see accompanying file Copyright.txt for details.
|
||||||
|
#
|
||||||
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
||||||
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
# See the License for more information.
|
||||||
|
#=============================================================================
|
||||||
|
|
||||||
if (PCRE_INCLUDE_DIR AND PCRE_PCREPOSIX_LIBRARY AND PCRE_PCRE_LIBRARY)
|
# If PCRE_ROOT_DIR was defined in the environment, use it.
|
||||||
# Already in cache, be silent
|
IF(NOT PCRE_ROOT_DIR AND NOT $ENV{PCRE_ROOT_DIR} STREQUAL "")
|
||||||
set(PCRE_FIND_QUIETLY TRUE)
|
SET(PCRE_ROOT_DIR $ENV{PCRE_ROOT_DIR})
|
||||||
endif (PCRE_INCLUDE_DIR AND PCRE_PCREPOSIX_LIBRARY AND PCRE_PCRE_LIBRARY)
|
|
||||||
|
|
||||||
if (NOT WIN32)
|
|
||||||
# use pkg-config to get the directories and then use these values
|
|
||||||
# in the FIND_PATH() and FIND_LIBRARY() calls
|
|
||||||
find_package(PkgConfig)
|
|
||||||
pkg_check_modules(PC_PCRE QUIET libpcre)
|
|
||||||
set(PCRE_DEFINITIONS ${PC_PCRE_CFLAGS_OTHER})
|
|
||||||
endif (NOT WIN32)
|
|
||||||
|
|
||||||
find_path(PCRE_INCLUDE_DIR pcre.h
|
|
||||||
HINTS ${PC_PCRE_INCLUDEDIR} ${PC_PCRE_INCLUDE_DIRS}
|
|
||||||
PATH_SUFFIXES pcre)
|
|
||||||
|
|
||||||
find_library(PCRE_PCRE_LIBRARY NAMES pcre HINTS ${PC_PCRE_LIBDIR} ${PC_PCRE_LIBRARY_DIRS})
|
|
||||||
|
|
||||||
find_library(PCRE_PCREPOSIX_LIBRARY NAMES pcreposix HINTS ${PC_PCRE_LIBDIR} ${PC_PCRE_LIBRARY_DIRS})
|
|
||||||
|
|
||||||
include(FindPackageHandleStandardArgs)
|
|
||||||
|
|
||||||
IF(NOT WIN32)
|
|
||||||
find_package_handle_standard_args(PCRE DEFAULT_MSG PCRE_INCLUDE_DIR PCRE_PCRE_LIBRARY PCRE_PCREPOSIX_LIBRARY )
|
|
||||||
mark_as_advanced(PCRE_INCLUDE_DIR PCRE_LIBRARIES PCRE_PCREPOSIX_LIBRARY PCRE_PCRE_LIBRARY)
|
|
||||||
set(PCRE_LIBRARIES ${PCRE_PCRE_LIBRARY} ${PCRE_PCREPOSIX_LIBRARY})
|
|
||||||
ELSE()
|
|
||||||
find_package_handle_standard_args(PCRE DEFAULT_MSG PCRE_INCLUDE_DIR PCRE_PCRE_LIBRARY )
|
|
||||||
set(PCRE_LIBRARIES ${PCRE_PCRE_LIBRARY} )
|
|
||||||
mark_as_advanced(PCRE_INCLUDE_DIR PCRE_LIBRARIES PCRE_PCRE_LIBRARY)
|
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
|
SET(_pcre_SEARCH_DIRS
|
||||||
|
${PCRE_ROOT_DIR}
|
||||||
|
/usr/local
|
||||||
|
/sw # Fink
|
||||||
|
/opt/local # DarwinPorts
|
||||||
|
/opt/csw # Blastwave
|
||||||
|
)
|
||||||
|
|
||||||
|
FIND_PATH(PCRE_INCLUDE_DIR pcre.h
|
||||||
|
HINTS
|
||||||
|
${_pcre_SEARCH_DIRS}
|
||||||
|
PATH_SUFFIXES
|
||||||
|
include
|
||||||
|
include
|
||||||
|
)
|
||||||
|
|
||||||
|
FIND_LIBRARY(PCRE_LIBRARY
|
||||||
|
NAMES
|
||||||
|
pcre
|
||||||
|
HINTS
|
||||||
|
${_pcre_SEARCH_DIRS}
|
||||||
|
PATH_SUFFIXES
|
||||||
|
lib64 lib
|
||||||
|
)
|
||||||
|
|
||||||
|
# handle the QUIETLY and REQUIRED arguments and set PCRE_FOUND to TRUE if
|
||||||
|
# all listed variables are TRUE
|
||||||
|
INCLUDE(FindPackageHandleStandardArgs)
|
||||||
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(PCRE DEFAULT_MSG
|
||||||
|
PCRE_LIBRARY PCRE_INCLUDE_DIR)
|
||||||
|
|
||||||
|
IF(PCRE_FOUND)
|
||||||
|
SET(PCRE_LIBRARIES ${PCRE_LIBRARY})
|
||||||
|
SET(PCRE_INCLUDE_DIRS ${PCRE_INCLUDE_DIR})
|
||||||
|
ENDIF(PCRE_FOUND)
|
||||||
|
|
||||||
|
MARK_AS_ADVANCED(
|
||||||
|
PCRE_INCLUDE_DIR
|
||||||
|
PCRE_LIBRARY
|
||||||
|
)
|
||||||
|
@@ -713,7 +713,6 @@ add_dependencies(blender makesdna)
|
|||||||
get_property(BLENDER_LINK_LIBS GLOBAL PROPERTY BLENDER_LINK_LIBS)
|
get_property(BLENDER_LINK_LIBS GLOBAL PROPERTY BLENDER_LINK_LIBS)
|
||||||
|
|
||||||
set(BLENDER_LINK_LIBS
|
set(BLENDER_LINK_LIBS
|
||||||
bf_nodes
|
|
||||||
${BLENDER_LINK_LIBS}
|
${BLENDER_LINK_LIBS}
|
||||||
bf_windowmanager
|
bf_windowmanager
|
||||||
bf_render
|
bf_render
|
||||||
|
Reference in New Issue
Block a user