2020-12-01 13:37:26 -08:00
|
|
|
#[===[.md:
|
|
|
|
# vcpkg_build_msbuild
|
|
|
|
|
|
|
|
Build a 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)
|
|
|
|
#]===]
|
2017-03-13 14:08:40 -07:00
|
|
|
|
2016-09-18 20:50:08 -07:00
|
|
|
function(vcpkg_build_msbuild)
|
2020-10-27 03:30:27 +01:00
|
|
|
# parse parameters such that semicolons in options arguments to COMMAND don't get erased
|
2018-02-17 04:46:38 -08:00
|
|
|
cmake_parse_arguments(
|
2020-10-27 03:30:27 +01:00
|
|
|
PARSE_ARGV 0
|
2018-02-17 04:46:38 -08:00
|
|
|
_csc
|
|
|
|
"USE_VCPKG_INTEGRATION"
|
|
|
|
"PROJECT_PATH;RELEASE_CONFIGURATION;DEBUG_CONFIGURATION;PLATFORM;PLATFORM_TOOLSET;TARGET_PLATFORM_VERSION;TARGET"
|
|
|
|
"OPTIONS;OPTIONS_RELEASE;OPTIONS_DEBUG"
|
|
|
|
)
|
2016-09-18 20:50:08 -07: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 13:11:45 +02:00
|
|
|
if(NOT DEFINED _csc_PLATFORM)
|
2016-10-02 12:55:30 +02:00
|
|
|
set(_csc_PLATFORM ${TRIPLET_SYSTEM_ARCH})
|
|
|
|
endif()
|
2017-03-14 02:18:23 +03:00
|
|
|
if(NOT DEFINED _csc_PLATFORM_TOOLSET)
|
|
|
|
set(_csc_PLATFORM_TOOLSET ${VCPKG_PLATFORM_TOOLSET})
|
|
|
|
endif()
|
2017-03-13 14:02:28 -07:00
|
|
|
if(NOT DEFINED _csc_TARGET_PLATFORM_VERSION)
|
|
|
|
vcpkg_get_windows_sdk(_csc_TARGET_PLATFORM_VERSION)
|
2017-03-12 21:21:34 +03:00
|
|
|
endif()
|
2017-03-13 14:08:40 -07:00
|
|
|
if(NOT DEFINED _csc_TARGET)
|
|
|
|
set(_csc_TARGET Rebuild)
|
|
|
|
endif()
|
2016-09-18 20:50:08 -07:00
|
|
|
|
2017-03-13 14:02:28 -07:00
|
|
|
list(APPEND _csc_OPTIONS
|
2017-03-13 14:08:40 -07:00
|
|
|
/t:${_csc_TARGET}
|
2017-03-13 14:02:28 -07:00
|
|
|
/p:Platform=${_csc_PLATFORM}
|
2017-03-14 02:18:23 +03:00
|
|
|
/p:PlatformToolset=${_csc_PLATFORM_TOOLSET}
|
2017-03-13 14:02:28 -07:00
|
|
|
/p:VCPkgLocalAppDataDisabled=true
|
|
|
|
/p:UseIntelMKL=No
|
|
|
|
/p:WindowsTargetPlatformVersion=${_csc_TARGET_PLATFORM_VERSION}
|
[vcpkg manifest] Manifest Implementation (#11757)
==== Changes Related to manifests ====
* Add the `manifests` feature flag
* This only says whether we look for a `vcpkg.json` in the cwd, not
whether we support parsing manifests (for ports, for example)
* Changes to the manifests RFC
* `"authors"` -> `"maintainers"`
* `--x-classic-mode` -> `-manifests` \in `vcpkg_feature_flags`
* reserve `"core"` in addition to `"default"`, since that's already
reserved for features
* Add a small helper note about what identifiers must look like
* `<license-string>`: SPDX v3.8 -> v3.9
* `"feature"."description"` is allowed to be an array of strings as well
* `"version"` -> `"version-string"` for forward-compat with versions
RFC
* Add the `--feature-flags` option
* Add the ability to turn off feature flags via passing
`-<feature-flag>` to `VCPKG_FEATURE_FLAGS` or `--feature-flags`
* Add CMake toolchain support for manifests
* Requires either:
* a feature flag of `manifests` in either `Env{VCPKG_FEATURE_FLAGS}`
or `VCPKG_FEATURE_FLAGS`
* Passing the `VCPKG_ENABLE_MANIFESTS` option
* The toolchain will install your packages to
`${VCPKG_MANIFEST_DIR}/vcpkg_installed`.
* Add MSBuild `vcpkg integrate install` support for manifests
* Requires `VcpkgEnableManifest` to be true
* `vcpkg create` creates a port that has a `vcpkg.json` instead of a
`CONTROL`
* argparse, abseil, 3fd, and avisynthplus ports switched to manifest
from CONTROL
* Add support for `--x-manifest-root`, as well as code for finding it if
not passed
* Add support for parsing manifests!
* Add a filesystem lock!
==== Important Changes which are somewhat unrelated to manifests ====
* Rename `logicexpression.{h,cpp}` to `platform-expression.{h,cpp}`
* Add `PlatformExpression` type which takes the place of the old logic
expression
* Split the parsing of platform expressions from checking whether
they're true or not
* Eagerly parse PlatformExpressions as opposed to leaving them as
strings
* Add checking for feature flag consistency
* i.e., if `-binarycaching` is passed, you shouldn't be passing
`--binarysource`
* Add the `Json::Reader` type which, with the help of user-defined
visitors, converts JSON to your internal type
* VcpkgArgParser: place the switch names into a constant as opposed to
using magic constants
* In general update the parsing code so that this ^ works
* Add `Port-Version` fields to CONTROL files
* This replaces the existing practice of
`Version: <my-version>-<port-version>`
==== Smaller changes ====
* small drive-by cleanups to some CMake
* `${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}` ->
`${CURRENT_INSTALLED_DIR}`
* Remove `-analyze` when compiling with clang-cl, since that's not a
supported flag (vcpkg's build system)
* Add a message about which compiler is detected by vcpkg's build
system machinery
* Fix `Expected::then`
* Convert `""` to `{}` for `std::string` and `fs::path`, to avoid a
`strlen` (additionally, `.empty()` instead of `== ""`, and `.clear()`)
* Add `Strings::strto` which converts strings to numeric types
* Support built-in arrays and `StringView` for `Strings::join`
* Add `operator<` and friends to `StringView`
* Add `substr` to `StringView`
* SourceParagraphParser gets some new errors
2020-06-30 10:40:18 -07:00
|
|
|
/p:VcpkgManifestInstall=false
|
2021-02-11 10:09:36 -08:00
|
|
|
/p:VcpkgManifestEnabled=false
|
2017-03-13 14:02:28 -07:00
|
|
|
/m
|
|
|
|
)
|
|
|
|
|
2018-03-20 21:45:01 -07:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
|
|
# Disable LTCG for static libraries because this setting introduces ABI incompatibility between minor compiler versions
|
|
|
|
# TODO: Add a way for the user to override this if they want to opt-in to incompatibility
|
|
|
|
list(APPEND _csc_OPTIONS /p:WholeProgramOptimization=false)
|
|
|
|
endif()
|
|
|
|
|
2018-02-17 04:46:38 -08:00
|
|
|
if(_csc_USE_VCPKG_INTEGRATION)
|
2018-07-03 15:39:13 +02:00
|
|
|
list(
|
|
|
|
APPEND _csc_OPTIONS
|
2019-09-13 06:52:52 +00:00
|
|
|
/p:ForceImportBeforeCppTargets=${SCRIPTS}/buildsystems/msbuild/vcpkg.targets
|
2018-07-03 15:39:13 +02:00
|
|
|
"/p:VcpkgTriplet=${TARGET_TRIPLET}"
|
2021-02-11 10:09:36 -08:00
|
|
|
"/p:VcpkgInstalledDir=${_VCPKG_INSTALLED_DIR}"
|
2018-07-03 15:39:13 +02:00
|
|
|
)
|
2021-02-11 10:09:36 -08:00
|
|
|
else()
|
|
|
|
list(APPEND _csc_OPTIONS "/p:VcpkgEnabled=false")
|
2018-02-17 04:46:38 -08:00
|
|
|
endif()
|
|
|
|
|
2017-11-25 15:25:18 -08:00
|
|
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
|
|
|
|
message(STATUS "Building ${_csc_PROJECT_PATH} for Release")
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel)
|
|
|
|
vcpkg_execute_required_process(
|
|
|
|
COMMAND msbuild ${_csc_PROJECT_PATH}
|
|
|
|
/p:Configuration=${_csc_RELEASE_CONFIGURATION}
|
|
|
|
${_csc_OPTIONS}
|
|
|
|
${_csc_OPTIONS_RELEASE}
|
|
|
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel
|
|
|
|
LOGNAME build-${TARGET_TRIPLET}-rel
|
|
|
|
)
|
|
|
|
endif()
|
2016-09-18 20:50:08 -07:00
|
|
|
|
2017-11-25 15:25:18 -08:00
|
|
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
|
|
|
message(STATUS "Building ${_csc_PROJECT_PATH} for Debug")
|
|
|
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg)
|
|
|
|
vcpkg_execute_required_process(
|
|
|
|
COMMAND msbuild ${_csc_PROJECT_PATH}
|
|
|
|
/p:Configuration=${_csc_DEBUG_CONFIGURATION}
|
|
|
|
${_csc_OPTIONS}
|
|
|
|
${_csc_OPTIONS_DEBUG}
|
|
|
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg
|
|
|
|
LOGNAME build-${TARGET_TRIPLET}-dbg
|
|
|
|
)
|
|
|
|
endif()
|
2016-11-11 01:15:14 +01:00
|
|
|
endfunction()
|