2016-10-02 18:55:30 +08:00
|
|
|
#.rst:
|
|
|
|
# .. command:: vcpkg_build_msbuild
|
|
|
|
#
|
|
|
|
# Build a msbuild-based project.
|
|
|
|
#
|
|
|
|
# ::
|
|
|
|
# vcpkg_build_msbuild(PROJECT_PATH <sln_project_path>
|
|
|
|
# [RELEASE_CONFIGURATION <release_configuration>] # (default = "Release")
|
|
|
|
# [DEBUG_CONFIGURATION <debug_configuration>] @ (default = "Debug")
|
2017-03-13 02:21:34 +08:00
|
|
|
# [TARGET_PLATFORM_VERSION <windows_target_platform_version>]
|
2016-10-02 18:55:30 +08:00
|
|
|
# [PLATFORM <platform>] # (default = "${TRIPLET_SYSTEM_ARCH}")
|
2017-03-14 07:18:23 +08:00
|
|
|
# [PLATFORM_TOOLSET <platform_toolset>] # (default = "${VCPKG_PLATFORM_TOOLSET}")
|
2016-10-02 18:55:30 +08:00
|
|
|
# [OPTIONS arg1 [arg2 ...]]
|
|
|
|
# [OPTIONS_RELEASE arg1 [arg2 ...]]
|
|
|
|
# [OPTIONS_DEBUG arg1 [arg2 ...]]
|
|
|
|
# )
|
|
|
|
#
|
|
|
|
# ``PROJECT_PATH``
|
|
|
|
# The path to the *.sln msbuild project file.
|
|
|
|
# ``RELEASE_CONFIGURATION``
|
|
|
|
# The configuration (``/p:Configuration`` msbuild parameter)
|
|
|
|
# used for Release builds.
|
|
|
|
# ``DEBUG_CONFIGURATION``
|
|
|
|
# The configuration (``/p:Configuration`` msbuild parameter)
|
|
|
|
# used for Debug builds.
|
2017-03-13 02:21:34 +08:00
|
|
|
# ``TARGET_PLATFORM_VERSION``
|
|
|
|
# The WindowsTargetPlatformVersion (``/p:WindowsTargetPlatformVersion`` msbuild parameter)
|
2017-03-14 05:08:40 +08:00
|
|
|
# ``TARGET``
|
|
|
|
# The MSBuild target to build. (``/t:<TARGET>``)
|
2016-10-02 18:55:30 +08:00
|
|
|
# ``PLATFORM``
|
|
|
|
# The platform (``/p:Platform`` msbuild parameter)
|
|
|
|
# used for the build.
|
2017-03-14 07:18:23 +08:00
|
|
|
# ``PLATFORM_TOOLSET``
|
|
|
|
# The platform toolset (``/p:PlatformToolset`` msbuild parameter)
|
|
|
|
# used for the build.
|
2016-10-02 18:55:30 +08:00
|
|
|
# ``OPTIONS``
|
|
|
|
# The options passed to msbuild for all builds.
|
|
|
|
# ``OPTIONS_RELEASE``
|
|
|
|
# The options passed to msbuild for Release builds.
|
|
|
|
# ``OPTIONS_DEBUG``
|
|
|
|
# The options passed to msbuild for Debug builds.
|
|
|
|
#
|
|
|
|
|
2017-03-14 05:08:40 +08:00
|
|
|
|
2016-09-19 11:50:08 +08:00
|
|
|
function(vcpkg_build_msbuild)
|
2017-03-14 07:18:23 +08:00
|
|
|
cmake_parse_arguments(_csc "" "PROJECT_PATH;RELEASE_CONFIGURATION;DEBUG_CONFIGURATION;PLATFORM;PLATFORM_TOOLSET;TARGET_PLATFORM_VERSION;TARGET" "OPTIONS;OPTIONS_RELEASE;OPTIONS_DEBUG" ${ARGN})
|
2016-09-19 11:50:08 +08:00
|
|
|
|
|
|
|
if(NOT DEFINED _csc_RELEASE_CONFIGURATION)
|
|
|
|
set(_csc_RELEASE_CONFIGURATION Release)
|
|
|
|
endif()
|
|
|
|
if(NOT DEFINED _csc_DEBUG_CONFIGURATION)
|
|
|
|
set(_csc_DEBUG_CONFIGURATION Debug)
|
|
|
|
endif()
|
2016-10-02 19:11:45 +08:00
|
|
|
if(NOT DEFINED _csc_PLATFORM)
|
2016-10-02 18:55:30 +08:00
|
|
|
set(_csc_PLATFORM ${TRIPLET_SYSTEM_ARCH})
|
|
|
|
endif()
|
2017-03-14 07:18:23 +08:00
|
|
|
if(NOT DEFINED _csc_PLATFORM_TOOLSET)
|
|
|
|
set(_csc_PLATFORM_TOOLSET ${VCPKG_PLATFORM_TOOLSET})
|
|
|
|
endif()
|
2017-03-14 05:02:28 +08:00
|
|
|
if(NOT DEFINED _csc_TARGET_PLATFORM_VERSION)
|
|
|
|
vcpkg_get_windows_sdk(_csc_TARGET_PLATFORM_VERSION)
|
2017-03-13 02:21:34 +08:00
|
|
|
endif()
|
2017-03-14 05:08:40 +08:00
|
|
|
if(NOT DEFINED _csc_TARGET)
|
|
|
|
set(_csc_TARGET Rebuild)
|
|
|
|
endif()
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2017-03-14 05:02:28 +08:00
|
|
|
list(APPEND _csc_OPTIONS
|
2017-03-14 05:08:40 +08:00
|
|
|
/t:${_csc_TARGET}
|
2017-03-14 05:02:28 +08:00
|
|
|
/p:Platform=${_csc_PLATFORM}
|
2017-03-14 07:18:23 +08:00
|
|
|
/p:PlatformToolset=${_csc_PLATFORM_TOOLSET}
|
2017-03-14 05:02:28 +08:00
|
|
|
/p:VCPkgLocalAppDataDisabled=true
|
|
|
|
/p:UseIntelMKL=No
|
|
|
|
/p:WindowsTargetPlatformVersion=${_csc_TARGET_PLATFORM_VERSION}
|
|
|
|
/m
|
|
|
|
)
|
|
|
|
|
2016-09-19 11:50:08 +08:00
|
|
|
message(STATUS "Building ${_csc_PROJECT_PATH} for Release")
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel)
|
|
|
|
vcpkg_execute_required_process(
|
2017-03-14 05:02:28 +08:00
|
|
|
COMMAND msbuild ${_csc_PROJECT_PATH}
|
2016-09-19 11:50:08 +08:00
|
|
|
/p:Configuration=${_csc_RELEASE_CONFIGURATION}
|
2017-03-14 05:02:28 +08:00
|
|
|
${_csc_OPTIONS}
|
|
|
|
${_csc_OPTIONS_RELEASE}
|
2016-09-19 11:50:08 +08:00
|
|
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel
|
|
|
|
LOGNAME build-${TARGET_TRIPLET}-rel
|
|
|
|
)
|
|
|
|
|
|
|
|
message(STATUS "Building ${_csc_PROJECT_PATH} for Debug")
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg)
|
|
|
|
vcpkg_execute_required_process(
|
2017-03-14 05:02:28 +08:00
|
|
|
COMMAND msbuild ${_csc_PROJECT_PATH}
|
2016-09-19 11:50:08 +08:00
|
|
|
/p:Configuration=${_csc_DEBUG_CONFIGURATION}
|
2017-03-14 05:02:28 +08:00
|
|
|
${_csc_OPTIONS}
|
|
|
|
${_csc_OPTIONS_DEBUG}
|
2016-09-19 11:50:08 +08:00
|
|
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg
|
|
|
|
LOGNAME build-${TARGET_TRIPLET}-dbg
|
|
|
|
)
|
2016-11-11 08:15:14 +08:00
|
|
|
endfunction()
|