summaryrefslogtreecommitdiffstats
path: root/Modules/FindBoost.cmake
diff options
context:
space:
mode:
authorDouglas Gregor <doug.gregor@gmail.com>2008-07-03 22:19:39 (GMT)
committerDouglas Gregor <doug.gregor@gmail.com>2008-07-03 22:19:39 (GMT)
commit247b7cc551ed88f445fe34a059a012311fbe7674 (patch)
treec0373e0284e6c8c3a044883e02e3f080eb5115ac /Modules/FindBoost.cmake
parent9e167b68008e185387326190de4bf7ff44ece3a4 (diff)
downloadCMake-247b7cc551ed88f445fe34a059a012311fbe7674.zip
CMake-247b7cc551ed88f445fe34a059a012311fbe7674.tar.gz
CMake-247b7cc551ed88f445fe34a059a012311fbe7674.tar.bz2
COMP: Find Boost as installed by the BoostPro/Boost Consulting installers on Windows
Diffstat (limited to 'Modules/FindBoost.cmake')
-rw-r--r--Modules/FindBoost.cmake8
1 files changed, 6 insertions, 2 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake
index c2224a0..8fc73c6 100644
--- a/Modules/FindBoost.cmake
+++ b/Modules/FindBoost.cmake
@@ -226,13 +226,17 @@ ELSE (_boost_IN_CACHE)
SET(_boost_INCLUDE_SEARCH_DIRS
C:/boost/include
- "${ENV}{ProgramFiles}/boost/boost_${Boost_FIND_VERSION_MAJOR}_${Boost_FIND_VERSION_MINOR}_${Boost_FIND_VERSION_PATCH}"
+ "C:/boost"
+ "$ENV{ProgramFiles}/boost/boost_${Boost_FIND_VERSION_MAJOR}_${Boost_FIND_VERSION_MINOR}_${Boost_FIND_VERSION_PATCH}"
+ "$ENV{ProgramFiles}/Boost"
/sw/local/include
)
SET(_boost_LIBRARIES_SEARCH_DIRS
C:/boost/lib
- "${ENV}{ProgramFiles}/boost/boost_${Boost_FIND_VERSION_MAJOR}_${Boost_FIND_VERSION_MINOR}_${Boost_FIND_VERSION_PATCH}/lib"
+ "C:/boost"
+ "$ENV{ProgramFiles}/boost/boost_${Boost_FIND_VERSION_MAJOR}_${Boost_FIND_VERSION_MINOR}_${Boost_FIND_VERSION_PATCH}/lib"
+ "$ENV{ProgramFiles}/Boost"
/sw/local/lib
)