aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Olsson <mikael.olsson@arm.com>2023-04-18 12:23:18 +0200
committerMikael Olsson <mikael.olsson@arm.com>2023-04-20 16:01:51 +0200
commite7461c78b13a769b14dc4841571dfc6c276f349d (patch)
treef93e4fef8f32a5aae6a53817f704c29795f5aeda
parent18cfaf00eb86b0d71aa45a5cfebba8ab1715b154 (diff)
downloadethos-u-linux-driver-stack-e7461c78b13a769b14dc4841571dfc6c276f349d.tar.gz
Fix Python API CMake file ETHOS_U_DRIVER_LIB path
The ETHOS_U_DRIVER_LIB environment variable in the Python API CMake file specifies that the driver library archive will be found in a lib subdirectory in the build directory. This is incorrect as the archive will be put directly into the driver library directory and the CMake file has been updated accordingly. Change-Id: Ie296f89f7669d69f193d96d994ad8e1918e3d1eb
-rw-r--r--driver_library/python/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver_library/python/CMakeLists.txt b/driver_library/python/CMakeLists.txt
index 6554730..a16c612 100644
--- a/driver_library/python/CMakeLists.txt
+++ b/driver_library/python/CMakeLists.txt
@@ -33,7 +33,7 @@ set(OUT_WRAP "${CMAKE_CURRENT_BINARY_DIR}/pydriver.wrap.timestamp")
# local env variables passed down to the python scripts
# scripts can thus be used standalone
set(DRIVER_ENV ETHOS_U_DRIVER_INCLUDE="${PROJECT_SOURCE_DIR}/include"
- ETHOS_U_DRIVER_LIB=${PROJECT_BINARY_DIR}/lib)
+ ETHOS_U_DRIVER_LIB="${PROJECT_BINARY_DIR}")
# common step - generates swig wrappers
add_custom_command(OUTPUT ${OUT_WRAP}