mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 18:39:07 +08:00
[tbb] Fix config path (#6100)
* Fix config path * Add lib prefix substitution
This commit is contained in:
parent
50f5372193
commit
f912e8fe10
@ -1,3 +1,3 @@
|
||||
Source: tbb
|
||||
Version: 2019_U5
|
||||
Version: 2019_U5-1
|
||||
Description: Intel's Threading Building Blocks.
|
||||
|
@ -81,14 +81,14 @@ string(REPLACE
|
||||
"${_contents}"
|
||||
)
|
||||
string(REPLACE
|
||||
"set(_tbb_release_lib \"/\${_tbb_component}.lib\")"
|
||||
"set(_tbb_release_lib \"\${_tbb_root}/lib/\${_tbb_component}.lib\")"
|
||||
"set(_tbb_release_lib \"/${TBB_LIB_PREFIX}\${_tbb_component}.${TBB_LIB_EXT}\")"
|
||||
"set(_tbb_release_lib \"\${_tbb_root}/lib/${TBB_LIB_PREFIX}\${_tbb_component}.${TBB_LIB_EXT}\")"
|
||||
_contents
|
||||
"${_contents}"
|
||||
)
|
||||
string(REPLACE
|
||||
"set(_tbb_debug_lib \"/\${_tbb_component}_debug.lib\")"
|
||||
"set(_tbb_debug_lib \"\${_tbb_root}/debug/lib/\${_tbb_component}_debug.lib\")"
|
||||
"set(_tbb_debug_lib \"/${TBB_LIB_PREFIX}\${_tbb_component}_debug.${TBB_LIB_EXT}\")"
|
||||
"set(_tbb_debug_lib \"\${_tbb_root}/debug/lib/${TBB_LIB_PREFIX}\${_tbb_component}_debug.${TBB_LIB_EXT}\")"
|
||||
_contents
|
||||
"${_contents}"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user