diff options
author | Brad King <brad.king@kitware.com> | 2001-07-17 13:54:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-07-17 13:54:05 (GMT) |
commit | c5381e85885c289d0669d5f3ddb5e3d2d3d2e5dd (patch) | |
tree | 38db367769adf553aebb21dac1b04b3a177e352b /Modules/FindPythonLibs.cmake | |
parent | e169953e923907706439c60033ce983729c2e404 (diff) | |
download | CMake-c5381e85885c289d0669d5f3ddb5e3d2d3d2e5dd.zip CMake-c5381e85885c289d0669d5f3ddb5e3d2d3d2e5dd.tar.gz CMake-c5381e85885c289d0669d5f3ddb5e3d2d3d2e5dd.tar.bz2 |
ENH: Added support for using backslash-style escaping in CMakeLists.txt file arguments. This allows double quotes to be used in arguments.
Diffstat (limited to 'Modules/FindPythonLibs.cmake')
-rw-r--r-- | Modules/FindPythonLibs.cmake | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/FindPythonLibs.cmake b/Modules/FindPythonLibs.cmake index 22ea142..27c615a 100644 --- a/Modules/FindPythonLibs.cmake +++ b/Modules/FindPythonLibs.cmake @@ -13,8 +13,8 @@ FIND_LIBRARY(PYTHON_DEBUG_LIBRARY PATHS /usr/lib /usr/local/lib - [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.1\InstallPath]/libs/Debug - [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.0\InstallPath]/libs/Debug + [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.1\\InstallPath]/libs/Debug + [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.0\\InstallPath]/libs/Debug ) FIND_LIBRARY(PYTHON_LIBRARY @@ -24,8 +24,8 @@ FIND_LIBRARY(PYTHON_LIBRARY /usr/lib/python2.1/config /usr/lib/python2.0/config /usr/local/lib - [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.1\InstallPath]/libs - [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.0\InstallPath]/libs + [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.1\\InstallPath]/libs + [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.0\\InstallPath]/libs ) FIND_PATH(PYTHON_INCLUDE_PATH Python.h @@ -33,7 +33,7 @@ FIND_PATH(PYTHON_INCLUDE_PATH Python.h /usr/include/python2.1 /usr/include/python2.0 /usr/local/include - [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.1\InstallPath]/include - [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.0\InstallPath]/include + [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.1\\InstallPath]/include + [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\2.0\\InstallPath]/include ) |