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
|
# Copyright(C) Xilinx Inc.
# Licensed under the MIT License
set(PYXIR_SHARED_LIB libpyxir.so)
if(Python_EXECUTABLE)
execute_process(COMMAND "${Python_EXECUTABLE}" "-c"
"import pyxir as px; print(px.get_include_dir()); print(px.get_lib_dir());"
RESULT_VARIABLE __result
OUTPUT_VARIABLE __output
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(__result MATCHES 0)
string(REGEX REPLACE ";" "\\\\;" __values ${__output})
string(REGEX REPLACE "\r?\n" ";" __values ${__values})
list(GET __values 0 PYXIR_INCLUDE_DIR)
list(GET __values 1 PYXIR_LIB_DIR)
endif()
else()
message(STATUS "To find Pyxir, the Python Executable needs to be found.")
endif()
add_library(pyxir SHARED IMPORTED)
message("-- Found Pyxir lib: ${PYXIR_LIB_DIR}/${PYXIR_SHARED_LIB}")
set_property(TARGET pyxir PROPERTY IMPORTED_LOCATION ${PYXIR_LIB_DIR}/${PYXIR_SHARED_LIB})
message("-- Found Pyxir include: ${PYXIR_INCLUDE_DIR}")
include_directories(${PYXIR_INCLUDE_DIR})
|