From a876c253da0e8f83aea56a072bac915aef79feab Mon Sep 17 00:00:00 2001 From: sdixon Date: Mon, 5 Aug 2024 13:24:08 +0100 Subject: [PATCH] fixing typo in cmake install pyproject file --- source/wrappers/python/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/wrappers/python/CMakeLists.txt b/source/wrappers/python/CMakeLists.txt index 4ed554ca..12dd9388 100755 --- a/source/wrappers/python/CMakeLists.txt +++ b/source/wrappers/python/CMakeLists.txt @@ -69,5 +69,5 @@ else() endif() install( FILES ${CMAKE_CURRENT_BINARY_DIR}/setup.py DESTINATION python_installer ) -install( FILES ${CMAKE_CURRENT_BINARY_DIR}/pyproject.toml DESTINATION python_installer ) -install( FILES ${CMAKE_CURRENT_BINARY_DIR}/README.md DESTINATION python_installer ) +install( FILES ${CMAKE_CURRENT_LIST_DIR}/pyproject.toml DESTINATION python_installer ) +install( FILES ${CMAKE_CURRENT_LIST_DIR}/README.md DESTINATION python_installer )