Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make python installation respect CMAKE_INSTALL_PREFIX #10827

Open
wants to merge 2 commits into
base: development
Choose a base branch
from

Commits on Aug 25, 2022

  1. Switched unicode ' like character to ascii '

    The character in question was punctuation protected by #if 0
    however my compiler (gcc 12.1.1) did not like this and errored out.
    
    It seems like these were some debugging notes in the code.
    m-elwin committed Aug 25, 2022
    Configuration menu
    Copy the full SHA
    da78c9b View commit details
    Browse the repository at this point in the history
  2. Fixes Issue IntelRealSense#10820 Python bindings don't respect CMAKE_…

    …INSTALL_PREFIX
    
    ${Python_SITEARCH} seems to return an absolute path so it can't
    be used to find the install location of python libraries.
    
    Instead the directory is now specified in a manner similar to that
    used for cmake versions < 3.12 (which use an older cmake module to
    find Python)
    m-elwin committed Aug 25, 2022
    Configuration menu
    Copy the full SHA
    06347cf View commit details
    Browse the repository at this point in the history