mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-21 04:39:45 +00:00
Add Python check in cmake process to allow optional resource.dat creation.
This commit is contained in:
@ -15,6 +15,18 @@ include_directories(${OPENSSL_INCLUDE_DIR})
|
||||
include_directories(${PYTHON_INCLUDE_DIR})
|
||||
include_directories(${CURL_INCLUDE_DIR})
|
||||
|
||||
# Test for Python Interpreter, which will be used for extra build scripts if available
|
||||
find_package(PythonInterp)
|
||||
if(PYTHONINTERP_FOUND)
|
||||
include(FindPythonModule)
|
||||
# Test for Python modules needed to build resource.dat
|
||||
find_python_module(rsvg)
|
||||
find_python_module(Image)
|
||||
if((DEFINED PY_RSVG) AND (DEFINED PY_IMAGE))
|
||||
set(BUILD_RESOURCE_DAT ON)
|
||||
endif((DEFINED PY_RSVG) AND (DEFINED PY_IMAGE))
|
||||
endif(PYTHONINTERP_FOUND)
|
||||
|
||||
add_subdirectory(external)
|
||||
|
||||
set(plClient_HEADERS
|
||||
@ -51,7 +63,9 @@ set(plClient_RESOURCES
|
||||
add_executable(plClient WIN32 ${plClient_SOURCES} ${plClient_HEADERS}
|
||||
${plClient_TEXT} ${plClient_RESOURCES})
|
||||
|
||||
add_dependencies(plClient externalResources)
|
||||
if(BUILD_RESOURCE_DAT)
|
||||
add_dependencies(plClient externalResources)
|
||||
endif(BUILD_RESOURCE_DAT)
|
||||
|
||||
if(PLASMA_EXTERNAL_RELEASE)
|
||||
set_target_properties(plClient PROPERTIES OUTPUT_NAME "UruExplorer")
|
||||
|
29
cmake/FindPythonModule.cmake
Normal file
29
cmake/FindPythonModule.cmake
Normal file
@ -0,0 +1,29 @@
|
||||
# Test for the existence of a specified Python Module
|
||||
#
|
||||
# From http://ompl.hg.sourceforge.net/hgweb/ompl/ompl/file/tip/CMakeModules/FindPython.cmake
|
||||
|
||||
|
||||
if(DEFINED PYTHON_EXECUTABLE)
|
||||
|
||||
function(find_python_module module)
|
||||
string(TOUPPER ${module} module_upper)
|
||||
if(NOT PY_${module_upper})
|
||||
if(ARGC GREATER 1 AND ARGV1 STREQUAL "REQUIRED")
|
||||
set(${module}_FIND_REQUIRED TRUE)
|
||||
endif()
|
||||
# A module's location is usually a directory, but for binary modules
|
||||
# it's a .so file.
|
||||
execute_process(COMMAND "${PYTHON_EXECUTABLE}" "-c"
|
||||
"import re, ${module}; print re.compile('/__init__.py.*').sub('',${module}.__file__)"
|
||||
RESULT_VARIABLE _${module}_status
|
||||
OUTPUT_VARIABLE _${module}_location
|
||||
ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
if(NOT _${module}_status)
|
||||
set(PY_${module_upper} ${_${module}_location} CACHE STRING
|
||||
"Location of Python module ${module}")
|
||||
endif(NOT _${module}_status)
|
||||
endif(NOT PY_${module_upper})
|
||||
find_package_handle_standard_args(PY_${module} DEFAULT_MSG PY_${module_upper})
|
||||
endfunction(find_python_module)
|
||||
|
||||
endif(DEFINED PYTHON_EXECUTABLE)
|
Reference in New Issue
Block a user