diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-11-01 05:04:44 -0700 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2017-11-01 05:04:44 -0700 |
| commit | ec4eec1f714d6bc64c4c3b2534e34b86249c873a (patch) | |
| tree | fd7fe245b85a1e35644169bba923b2a6f583d18e | |
| parent | 791fa2b90375ac35184e6cbef5531854d35ba770 (diff) | |
| download | vcpkg-ec4eec1f714d6bc64c4c3b2534e34b86249c873a.tar.gz vcpkg-ec4eec1f714d6bc64c4c3b2534e34b86249c873a.zip | |
[boost] Handle spaces in vcpkg path.
| -rw-r--r-- | ports/boost/desktop/user-config.jam | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/ports/boost/desktop/user-config.jam b/ports/boost/desktop/user-config.jam index 83206c098..311cc8951 100644 --- a/ports/boost/desktop/user-config.jam +++ b/ports/boost/desktop/user-config.jam @@ -6,33 +6,33 @@ using msvc : 14.1 : cl.exe : <setup>echo ; -using python : @PYTHON_VERSION@ : : @PYTHON_INCLUDE_PATH@ : @PYTHONLIBS_RELEASE@ ; -using python : @PYTHON_VERSION@ : : @PYTHON_INCLUDE_PATH@ : @PYTHONLIBS_DEBUG@ : <python-debugging>on ; +using python : @PYTHON_VERSION@ : : "@PYTHON_INCLUDE_PATH@" : "@PYTHONLIBS_RELEASE@" ; +using python : @PYTHON_VERSION@ : : "@PYTHON_INCLUDE_PATH@" : "@PYTHONLIBS_DEBUG@" : <python-debugging>on ; project user-config ; lib advapi32 ; -lib icuuc : : <search>@CURRENT_INSTALLED_DIR@/lib : : - <runtime-link>@LIB_RUNTIME_LINK@ +lib icuuc : : <search>"@CURRENT_INSTALLED_DIR@/lib" : : + <runtime-link>"@LIB_RUNTIME_LINK@" <library>advapi32 ; - -lib icuuc : : <search>@CURRENT_INSTALLED_DIR@/debug/lib + +lib icuuc : : <search>"@CURRENT_INSTALLED_DIR@/debug/lib" <variant>debug <name>icuucd : : - <runtime-link>@LIB_RUNTIME_LINK@ + <runtime-link>"@LIB_RUNTIME_LINK@" <library>advapi32 ; - -lib icuin : : <search>@CURRENT_INSTALLED_DIR@/lib : : - <runtime-link>@LIB_RUNTIME_LINK@ ; - -lib icuin : : <search>@CURRENT_INSTALLED_DIR@/debug/lib + +lib icuin : : <search>"@CURRENT_INSTALLED_DIR@/lib" : : + <runtime-link>"@LIB_RUNTIME_LINK@" ; + +lib icuin : : <search>"@CURRENT_INSTALLED_DIR@/debug/lib" <variant>debug <name>icuind : : - <runtime-link>@LIB_RUNTIME_LINK@ ; - -lib icudt : : <search>@CURRENT_INSTALLED_DIR@/lib : : - <runtime-link>@LIB_RUNTIME_LINK@ ; - -lib icudt : : <search>@CURRENT_INSTALLED_DIR@/debug/lib + <runtime-link>"@LIB_RUNTIME_LINK@" ; + +lib icudt : : <search>"@CURRENT_INSTALLED_DIR@/lib" : : + <runtime-link>"@LIB_RUNTIME_LINK@" ; + +lib icudt : : <search>"@CURRENT_INSTALLED_DIR@/debug/lib" <variant>debug - <name>icudtd : : - <runtime-link>@LIB_RUNTIME_LINK@ ;
\ No newline at end of file + <name>icudtd : : + <runtime-link>"@LIB_RUNTIME_LINK@" ;
\ No newline at end of file |
