mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-03 10:20:47 +00:00
7 lines
273 B
CMake
7 lines
273 B
CMake
execute_process(COMMAND powershell "${CMAKE_CURRENT_LIST_DIR}/bundle_python.ps1" x64 "${CMAKE_INSTALL_PREFIX}"
|
|
WORKING_DIRECTORY ${CPACK_PACKAGE_DIRECTORY}
|
|
RESULT_VARIABLE SCRIPT_RESULT)
|
|
if (SCRIPT_RESULT)
|
|
message(FATAL_ERROR "Failed to bundle python")
|
|
endif()
|