diff options
author | Jaime Resano <[email protected]> | 2025-01-21 11:17:07 +0100 |
---|---|---|
committer | Jaime Resano <[email protected]> | 2025-01-22 22:46:43 +0100 |
commit | 23b7ff61fb899ef8ae305df134d2c0968dce1fa2 (patch) | |
tree | 15f5a0afdf5335b883f531d5824d8994306625b4 /sources/pyside-tools/CMakeLists.txt | |
parent | 30f8707e1c677e3a42a93d1b2b17bd563b9de847 (diff) |
pyside6-deploy: 3. Rename project folder to project_lib
This is a refactor in order to improve the code clarity. In the testing
of the pyside6-project command, importlib.import_module is used to
import the project_lib folder. Currently,
importlib.import_module("project") is ambiguous because it may refer
to both the file and the folder. It chooses the folder over the file.
Task-number: PYSIDE-1612
Pick-to: 6.8
Change-Id: I8903ea9d2112cf2eb7a68d0e302d3c74edcf2c22
Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'sources/pyside-tools/CMakeLists.txt')
-rw-r--r-- | sources/pyside-tools/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside-tools/CMakeLists.txt b/sources/pyside-tools/CMakeLists.txt index 124ecc780..cc9a7e5b3 100644 --- a/sources/pyside-tools/CMakeLists.txt +++ b/sources/pyside-tools/CMakeLists.txt @@ -29,7 +29,7 @@ else() ${CMAKE_CURRENT_SOURCE_DIR}/requirements-android.txt) set(directories ${CMAKE_CURRENT_SOURCE_DIR}/deploy_lib - ${CMAKE_CURRENT_SOURCE_DIR}/project) + ${CMAKE_CURRENT_SOURCE_DIR}/project_lib) if(NOT NO_QT_TOOLS STREQUAL "yes") set(TOOLS_PATH "${QT6_INSTALL_PREFIX}/${QT6_HOST_INFO_BINDIR}") |