mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 18:48:59 +08:00
27 lines
1.1 KiB
CMake
27 lines
1.1 KiB
CMake
function(vcpkg_build_cmake)
|
|
cmake_parse_arguments(_bc "MSVC_64_TOOLSET" "" "" ${ARGN})
|
|
|
|
set(MSVC_EXTRA_ARGS)
|
|
|
|
# Specifies the architecture of the toolset, NOT the architecture of the produced binary
|
|
if (_bc_MSVC_64_TOOLSET)
|
|
list(APPEND MSVC_EXTRA_ARGS "/p:PreferredToolArchitecture=x64")
|
|
endif()
|
|
|
|
message(STATUS "Build ${TARGET_TRIPLET}-rel")
|
|
vcpkg_execute_required_process(
|
|
COMMAND ${CMAKE_COMMAND} --build . --config Release -- /p:VCPkgLocalAppDataDisabled=true /m ${MSVC_EXTRA_ARGS}
|
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel
|
|
LOGNAME build-${TARGET_TRIPLET}-rel
|
|
)
|
|
message(STATUS "Build ${TARGET_TRIPLET}-rel done")
|
|
|
|
message(STATUS "Build ${TARGET_TRIPLET}-dbg")
|
|
vcpkg_execute_required_process(
|
|
COMMAND ${CMAKE_COMMAND} --build . --config Debug -- /p:VCPkgLocalAppDataDisabled=true /m ${MSVC_EXTRA_ARGS}
|
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg
|
|
LOGNAME build-${TARGET_TRIPLET}-dbg
|
|
)
|
|
message(STATUS "Build ${TARGET_TRIPLET}-dbg done")
|
|
endfunction()
|