Closed bareya closed 3 years ago
This PR resolves the building problem on Linux described in #1. CMake script relies on Python3_EXECUTABLE variable that is not set because find_package is not present. Execution of ./setup.py fails because script has no executable permissions.
Python3_EXECUTABLE
find_package
./setup.py
Thanks! Indeed, this "find_package" was placed for the other python library (instrumentation), but not the scripting one.
This PR resolves the building problem on Linux described in #1. CMake script relies on
Python3_EXECUTABLE
variable that is not set becausefind_package
is not present. Execution of./setup.py
fails because script has no executable permissions.