mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-05 00:19:01 +08:00
cc00cf05fb
* Add libplist * Add libusbmuxd * Fix typos * Add getopt * Add libimobiledevice * Fix typos * Add libideviceactivation * Add ideviceinstaller * Include utilities * Install usbmuxd * Add readline * Fix readline on 64-bit windows * Add libirecovery * libideviceactivation: include tools * Bump versions to fix build issues * Bump versions * Add idevicerestore * [getopt][getopt-win32] Rename to getopt-win32 and only install on Windows Desktop * [readline][readline-win32] Rename to readline-win32 and only install for Windows Desktop * [vcpkg_from_github][vcpkg_apply_patches] Make PATCHES relative to the current port directory * [vcpkg_install_msbuild][vcpkg_check_linkage] Introduce vcpkg_install_msbuild() and vcpkg_check_linkage(). * [libimobiledevice et al] Use vcpkg_from_github() and vcpkg_install_msbuild() * [readline] Fix static builds
66 lines
2.0 KiB
Markdown
66 lines
2.0 KiB
Markdown
# vcpkg_build_msbuild
|
|
|
|
Build an msbuild-based project. Deprecated in favor of `vcpkg_install_msbuild()`.
|
|
|
|
## Usage
|
|
```cmake
|
|
vcpkg_build_msbuild(
|
|
PROJECT_PATH <${SOURCE_PATH}/port.sln>
|
|
[RELEASE_CONFIGURATION <Release>]
|
|
[DEBUG_CONFIGURATION <Debug>]
|
|
[TARGET <Build>]
|
|
[TARGET_PLATFORM_VERSION <10.0.15063.0>]
|
|
[PLATFORM <${TRIPLET_SYSTEM_ARCH}>]
|
|
[PLATFORM_TOOLSET <${VCPKG_PLATFORM_TOOLSET}>]
|
|
[OPTIONS </p:ZLIB_INCLUDE_PATH=X>...]
|
|
[OPTIONS_RELEASE </p:ZLIB_LIB=X>...]
|
|
[OPTIONS_DEBUG </p:ZLIB_LIB=X>...]
|
|
[USE_VCPKG_INTEGRATION]
|
|
)
|
|
```
|
|
|
|
## Parameters
|
|
### USE_VCPKG_INTEGRATION
|
|
Apply the normal `integrate install` integration for building the project.
|
|
|
|
By default, projects built with this command will not automatically link libraries or have header paths set.
|
|
|
|
### PROJECT_PATH
|
|
The path to the solution (`.sln`) or project (`.vcxproj`) 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.
|
|
|
|
### TARGET_PLATFORM_VERSION
|
|
The WindowsTargetPlatformVersion (``/p:WindowsTargetPlatformVersion`` msbuild parameter)
|
|
|
|
### TARGET
|
|
The MSBuild target to build. (``/t:<TARGET>``)
|
|
|
|
### PLATFORM
|
|
The platform (``/p:Platform`` msbuild parameter) used for the build.
|
|
|
|
### PLATFORM_TOOLSET
|
|
The platform toolset (``/p:PlatformToolset`` msbuild parameter) used for the build.
|
|
|
|
### OPTIONS
|
|
Additional options passed to msbuild for all builds.
|
|
|
|
### OPTIONS_RELEASE
|
|
Additional options passed to msbuild for Release builds. These are in addition to `OPTIONS`.
|
|
|
|
### OPTIONS_DEBUG
|
|
Additional options passed to msbuild for Debug builds. These are in addition to `OPTIONS`.
|
|
|
|
## Examples
|
|
|
|
* [chakracore](https://github.com/Microsoft/vcpkg/blob/master/ports/chakracore/portfile.cmake)
|
|
* [cppunit](https://github.com/Microsoft/vcpkg/blob/master/ports/cppunit/portfile.cmake)
|
|
|
|
## Source
|
|
[scripts/cmake/vcpkg_build_msbuild.cmake](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_build_msbuild.cmake)
|