1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
option(UNITSYNC_PYTHON_WRAPPER "Create a python wrapper for unitsync, if python is found on the system" TRUE)
if (UNITSYNC_PYTHON_WRAPPER)
# ADD_LIBRARY(static-unitsync STATIC ${unitsync_files})
# Add_Dependencies(static-unitsync generateVersionFiles)
# TARGET_LINK_LIBRARIES(static-unitsync ${unitsync_libs})
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "../../..")
FIND_PACKAGE(PythonLibs)
FIND_PACKAGE(PythonInterp)
INCLUDE(CheckPythonModule.cmake)
CheckPythonModule(pybindgen)
CheckPythonModule(pygccxml)
if (PYTHONLIBS_FOUND AND PYTHONINTERP_FOUND AND python_pybindgen_FOUND AND python_pygccxml_FOUND)
MESSAGE(STATUS "Python unitsync wrapper will be created")
SET(pythonUnitsyncTarget pyunitsync)
SET(pythonWrapperGenerator "${CMAKE_CURRENT_SOURCE_DIR}/binding_generator.py")
SET(pythonWrapperTest "${CMAKE_CURRENT_SOURCE_DIR}/binding_test.py")
SET(pythonWrapperCpp "${CMAKE_CURRENT_BINARY_DIR}/unitsync_python_wrapper.cc")
SET_SOURCE_FILES_PROPERTIES( "${pythonWrapperCpp}" PROPERTIES GENERATED TRUE)
ADD_CUSTOM_COMMAND(
OUTPUT
"${pythonWrapperCpp}"
COMMAND
"${PYTHON_EXECUTABLE}" "${pythonWrapperGenerator}"
"${CMAKE_SOURCE_DIR}/tools/unitsync" "${CMAKE_CURRENT_BINARY_DIR}" "${CMAKE_SOURCE_DIR}/rts"
DEPENDS
"${pythonWrapperGenerator}"
WORKING_DIRECTORY
"${CMAKE_CURRENT_BINARY_DIR}"
COMMENT
" ${pythonUnitsyncTarget}: Generating the wrapper script" VERBATIM
)
ADD_CUSTOM_TARGET( "test-${pythonUnitsyncTarget}"
COMMAND
"${PYTHON_EXECUTABLE}" "${pythonWrapperTest}"
DEPENDS
${pythonUnitsyncTarget}
WORKING_DIRECTORY
"${CMAKE_BINARY_DIR}"
)
ADD_CUSTOM_TARGET( "test-${pythonUnitsyncTarget}-all"
COMMAND
"${PYTHON_EXECUTABLE}" "${pythonWrapperTest}" "1"
DEPENDS
${pythonUnitsyncTarget}
WORKING_DIRECTORY
"${CMAKE_BINARY_DIR}"
)
INCLUDE_DIRECTORIES(${PYTHON_INCLUDE_DIRS} "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_SOURCE_DIR}")
ADD_LIBRARY(${pythonUnitsyncTarget} MODULE "${pythonWrapperCpp}" ${transformed_unitsync_files})
SET_TARGET_PROPERTIES(${pythonUnitsyncTarget} PROPERTIES PREFIX "")
TARGET_LINK_LIBRARIES(${pythonUnitsyncTarget} unitsync )
IF( WIN32 )
#somewhat hackish, but I have no idea why the libs are either not found or not linked on win otherwise
TARGET_LINK_LIBRARIES(${pythonUnitsyncTarget} ${MINGWLIBS}/dll/python25.dll )
ENDIF( WIN32 )
INSTALL(TARGETS ${pythonUnitsyncTarget} DESTINATION ${LIBDIR})
else (PYTHONLIBS_FOUND AND PYTHONINTERP_FOUND AND python_pybindgen_FOUND AND python_pygccxml_FOUND)
MESSAGE(STATUS "Python unitsync wrapper will NOT be created")
if( NOT PYTHONLIBS_FOUND )
message( STATUS "\t because python libs were not found" )
endif( NOT PYTHONLIBS_FOUND )
if( NOT PYTHONINTERP_FOUND )
message( STATUS "\t because python interpreter was not found" )
endif( NOT PYTHONINTERP_FOUND )
if( NOT python_pybindgen_FOUND )
message( STATUS "\t because pybindgen was not found" )
endif( NOT python_pybindgen_FOUND )
if( NOT python_pygccxml_FOUND )
message( STATUS "\t because pygccxml was not found" )
endif( NOT python_pygccxml_FOUND )
endif (PYTHONLIBS_FOUND AND PYTHONINTERP_FOUND AND python_pybindgen_FOUND AND python_pygccxml_FOUND)
endif (UNITSYNC_PYTHON_WRAPPER)
|