mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 19:59:00 +08:00
9 lines
450 B
CMake
9 lines
450 B
CMake
file(READ "${SOURCE_PATH}/build/Jamfile.v2" _contents)
|
|
string(REPLACE
|
|
"project.load [ path.join [ path.make $(here:D) ] ../../config/checks/architecture ]"
|
|
"project.load [ path.join [ path.make $(here:D) ] config/checks/architecture ]"
|
|
_contents "${_contents}")
|
|
file(WRITE "${SOURCE_PATH}/build/Jamfile.v2" "${_contents}")
|
|
file(COPY "${CURRENT_INSTALLED_DIR}/share/boost-config/checks" DESTINATION "${SOURCE_PATH}/build/config")
|
|
|