blob: 6b60ed69b169dbdb056fb2fe2521fdca25be9eb7 [file] [log] [blame]
Daniel Malea137c4d72013-02-28 23:11:46 +00001set(LLVM_NO_RTTI 1)
2
3add_custom_command(
4 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/LLDBWrapPython.cpp
5 DEPENDS ${LLDB_SOURCE_DIR}/scripts/lldb.swig
6 # swig was directly invoked on Windows (where the Python API is not being generated) but on other platforms, we need to run the *swig-wrapper-classes.sh shell-scripts.
7 #COMMAND swig -c++ -shadow -python -I${LLDB_SOURCE_DIR}/include -I./. -outdir ${LLDB_SOURCE_DIR}/scripts/Python -o ${LLDB_SOURCE_DIR}/source/LLDBWrapPython.cpp ${LLDB_SOURCE_DIR}/scripts/lldb.swig
Sylvestre Ledrub1049862013-04-13 13:20:12 +00008 COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/build-swig-wrapper-classes.sh ${LLDB_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_BINARY_DIR} -m
9 COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/finish-swig-wrapper-classes.sh ${LLDB_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_BINARY_DIR} -m
Daniel Malea137c4d72013-02-28 23:11:46 +000010 COMMENT "Building lldb python wrapper")
11set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/LLDBWrapPython.cpp PROPERTIES GENERATED 1)
12
Daniel Malea3b75ec02013-03-07 00:52:25 +000013ADD_CUSTOM_TARGET(swig_wrapper ALL echo -n
Daniel Malea137c4d72013-02-28 23:11:46 +000014 DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/LLDBWrapPython.cpp
15 )
Daniel Maleae4c20222013-05-17 20:55:19 +000016
17# Install the LLDB python module on all operating systems (except Windows)
18if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows")
19 install(SCRIPT lldb_python_module.cmake -DCMAKE_INSTALL_PREFIX=\"${CMAKE_INSTALL_PREFIX}\" -DCMAKE_BUILD_DIR=\"${CMAKE_BUILD_DIR}\")
20endif()