mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 23:29:03 +08:00
[rollup] 2021-07-26 (#19157)
* [rollup:2021-07-26 1/6] PR #18783 (@strega-nil) [scripts-audit] vcpkg_copy_tools and friends * [rollup:2021-07-26 2/6] PR #18898 (@dg0yt) [vcpkg] Fix toolchain compatibility with cmake < 3.15 * [rollup:2021-07-26 3/6] PR #18980 (@strega-nil) [cmake-guidelines] Minor update, for `if()` * [rollup:2021-07-26 4/6] PR #18981 (@strega-nil) [scripts-audit] vcpkg_check_linkage * [rollup:2021-07-26 5/6] PR #19158 (@Hoikas) [vcpkg.cmake] Fix variable case. * [rollup:2021-07-26 6/6] PR #18839 [scripts-audit] z_vcpkg_get_cmake_vars Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
This commit is contained in:
parent
8dddc6c899
commit
5304f826b5
@ -35,7 +35,7 @@ We hope that they will make both forwards and backwards compatibility easier.
|
|||||||
Always check for `ARGN` or `arg_UNPARSED_ARGUMENTS`.
|
Always check for `ARGN` or `arg_UNPARSED_ARGUMENTS`.
|
||||||
`FATAL_ERROR` when possible, `WARNING` if necessary for backwards compatibility.
|
`FATAL_ERROR` when possible, `WARNING` if necessary for backwards compatibility.
|
||||||
- All `cmake_parse_arguments` must use `PARSE_ARGV`.
|
- All `cmake_parse_arguments` must use `PARSE_ARGV`.
|
||||||
- All `foreach` loops must use `IN LISTS` and `IN ITEMS`.
|
- All `foreach` loops must use `IN LISTS`, `IN ITEMS`, or `RANGE`.
|
||||||
- The variables `${ARGV}` and `${ARGN}` are unreferenced,
|
- The variables `${ARGV}` and `${ARGN}` are unreferenced,
|
||||||
except in helpful messages to the user.
|
except in helpful messages to the user.
|
||||||
- (i.e., `message(FATAL_ERROR "blah was passed extra arguments: ${ARGN}")`)
|
- (i.e., `message(FATAL_ERROR "blah was passed extra arguments: ${ARGN}")`)
|
||||||
@ -45,27 +45,68 @@ We hope that they will make both forwards and backwards compatibility easier.
|
|||||||
- Exception: `vcpkg.cmake`'s `find_package`.
|
- Exception: `vcpkg.cmake`'s `find_package`.
|
||||||
- Scripts in the scripts tree should not be expected to need observable changes
|
- Scripts in the scripts tree should not be expected to need observable changes
|
||||||
as part of normal operation.
|
as part of normal operation.
|
||||||
- Example violation: `vcpkg_acquire_msys()` has hard-coded packages and versions that need updating over time due to the MSYS project dropping old packages.
|
- Example violation: `vcpkg_acquire_msys()` has hard-coded packages and versions
|
||||||
- Example exception: `vcpkg_from_sourceforge()` has a list of mirrors which needs maintenance but does not have an observable behavior impact on the callers.
|
that need updating over time due to the MSYS project dropping old packages.
|
||||||
- All variable expansions are in quotes `""`,
|
- Example exception: `vcpkg_from_sourceforge()` has a list of mirrors which
|
||||||
except those which are intended to be passed as multiple arguments.
|
needs maintenance, but does not have an observable behavior impact on the callers.
|
||||||
- Example:
|
- Rules for quoting: there are three kinds of arguments in CMake -
|
||||||
```cmake
|
unquoted (`foo(BAR)`), quoted (`foo("BAR")`), and bracketed (`foo([[BAR]])`).
|
||||||
set(working_directory "")
|
Follow these rules to quote correctly:
|
||||||
if(DEFINED arg_WORKING_DIRECTORY)
|
- If an argument contains a variable expansion `${...}`,
|
||||||
set(working_directory "WORKING_DIRECTORY" "${arg_WORKING_DIRECTORY}")
|
it must be quoted.
|
||||||
endif()
|
- Exception: a "splat" variable expansion, when one variable will be
|
||||||
# calls do_the_thing() if NOT DEFINED arg_WORKING_DIRECTORY,
|
passed to a function as multiple arguments. In this case, the argument
|
||||||
# else calls do_the_thing(WORKING_DIRECTORY "${arg_WORKING_DIRECTORY}")
|
should simply be `${foo}`:
|
||||||
do_the_thing(${working_directory})
|
```cmake
|
||||||
```
|
vcpkg_list(SET working_directory)
|
||||||
|
if(DEFINED "arg_WORKING_DIRECTORY")
|
||||||
|
vcpkg_list(SET working_directory WORKING_DIRECTORY "${arg_WORKING_DIRECTORY}")
|
||||||
|
endif()
|
||||||
|
# calls do_the_thing() if NOT DEFINED arg_WORKING_DIRECTORY,
|
||||||
|
# else calls do_the_thing(WORKING_DIRECTORY "${arg_WORKING_DIRECTORY}")
|
||||||
|
do_the_thing(${working_directory})
|
||||||
|
```
|
||||||
|
- Otherwise, if the argument contains any escape sequences that are not
|
||||||
|
`\\`, `\"`, or `\$`, that argument must be a quoted argument.
|
||||||
|
- For example: `"foo\nbar"` must be quoted.
|
||||||
|
- Otherwise, if the argument contains a `\`, a `"`, or a `$`,
|
||||||
|
that argument should be bracketed.
|
||||||
|
- Example:
|
||||||
|
```cmake
|
||||||
|
set(x [[foo\bar]])
|
||||||
|
set(y [=[foo([[bar\baz]])]=])
|
||||||
|
```
|
||||||
|
- Otherwise, if the argument contains characters that are
|
||||||
|
not alphanumeric or `_`, that argument should be quoted.
|
||||||
|
- Otherwise, the argument should be unquoted.
|
||||||
|
- Exception: arguments to `if()` of type `<variable|string>` should always be quoted:
|
||||||
|
- Both arguments to the comparison operators -
|
||||||
|
`EQUAL`, `STREQUAL`, `VERSION_LESS`, etc.
|
||||||
|
- The first argument to `MATCHES` and `IN_LIST`
|
||||||
|
- Example:
|
||||||
|
```cmake
|
||||||
|
if("${FOO}" STREQUAL "BAR") # ...
|
||||||
|
if("${BAZ}" EQUAL "0") # ...
|
||||||
|
if("FOO" IN_LIST list_variable) # ...
|
||||||
|
if("${bar}" MATCHES [[a[bcd]+\.[bcd]+]]) # ...
|
||||||
|
```
|
||||||
|
- For single expressions and for other types of predicates that do not
|
||||||
|
take `<variable|string>`, use the normal rules.
|
||||||
- There are no "pointer" or "in-out" parameters
|
- There are no "pointer" or "in-out" parameters
|
||||||
(where a user passes a variable name rather than the contents),
|
(where a user passes a variable name rather than the contents),
|
||||||
except for simple out-parameters.
|
except for simple out-parameters.
|
||||||
- Variables are not assumed to be empty.
|
- Variables are not assumed to be empty.
|
||||||
If the variable is intended to be used locally,
|
If the variable is intended to be used locally,
|
||||||
it must be explicitly initialized to empty with `set(foo "")`.
|
it must be explicitly initialized to empty with `set(foo "")` if it is a string variable,
|
||||||
- All variables expected to be inherited from the parent scope across an API boundary (i.e. not a file-local function) should be documented. Note that all variables mentioned in triplets.md are considered documented.
|
and `vcpkg_list(SET foo)` if it is a list variable.
|
||||||
|
- `set(var)` should not be used. Use `unset(var)` to unset a variable,
|
||||||
|
`set(var "")` to set it to the empty string,
|
||||||
|
and `vcpkg_list(SET var)` to set it to the empty list.
|
||||||
|
_Note: the empty string and the empty list are the same value;_
|
||||||
|
_this is a notational difference rather than a difference in result_
|
||||||
|
- All variables expected to be inherited from the parent scope across an API boundary
|
||||||
|
(i.e. not a file-local function) should be documented.
|
||||||
|
Note that all variables mentioned in triplets.md are considered documented.
|
||||||
- Out parameters are only set in `PARENT_SCOPE` and are never read.
|
- Out parameters are only set in `PARENT_SCOPE` and are never read.
|
||||||
See also the helper `z_vcpkg_forward_output_variable()` to forward out parameters through a function scope.
|
See also the helper `z_vcpkg_forward_output_variable()` to forward out parameters through a function scope.
|
||||||
- `CACHE` variables are used only for global variables which are shared internally among strongly coupled
|
- `CACHE` variables are used only for global variables which are shared internally among strongly coupled
|
||||||
@ -80,16 +121,14 @@ We hope that they will make both forwards and backwards compatibility easier.
|
|||||||
and `<start>` _must always be_ less than or equal to `<stop>`.
|
and `<start>` _must always be_ less than or equal to `<stop>`.
|
||||||
- This must be checked by something like:
|
- This must be checked by something like:
|
||||||
```cmake
|
```cmake
|
||||||
if(start LESS_EQUAL end)
|
if("${start}" LESS_EQUAL "${end}")
|
||||||
foreach(RANGE start end)
|
foreach(RANGE "${start}" "${end}")
|
||||||
...
|
...
|
||||||
endforeach()
|
endforeach()
|
||||||
endif()
|
endif()
|
||||||
```
|
```
|
||||||
- All port-based scripts must use `include_guard(GLOBAL)`
|
- All port-based scripts must use `include_guard(GLOBAL)`
|
||||||
to avoid being included multiple times.
|
to avoid being included multiple times.
|
||||||
- `set(var)` should not be used. Use `unset(var)` to unset a variable,
|
|
||||||
and `set(var "")` to set it to the empty value. _Note: this works for use as a list and as a string_
|
|
||||||
|
|
||||||
### CMake Versions to Require
|
### CMake Versions to Require
|
||||||
|
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
# vcpkg_internal_get_cmake_vars
|
|
||||||
|
|
||||||
The latest version of this document lives in the [vcpkg repo](https://github.com/Microsoft/vcpkg/blob/master/docs/).
|
|
||||||
|
|
||||||
**Only for internal use in vcpkg helpers. Behavior and arguments will change without notice.**
|
|
||||||
Runs a cmake configure with a dummy project to extract certain cmake variables
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
```cmake
|
|
||||||
vcpkg_internal_get_cmake_vars(
|
|
||||||
[OUTPUT_FILE <output_file_with_vars>]
|
|
||||||
[OPTIONS <-DUSE_THIS_IN_ALL_BUILDS=1>...]
|
|
||||||
)
|
|
||||||
```
|
|
||||||
|
|
||||||
## Parameters
|
|
||||||
### OPTIONS
|
|
||||||
Additional options to pass to the test configure call
|
|
||||||
|
|
||||||
### OUTPUT_FILE
|
|
||||||
Variable to return the path to the generated cmake file with the detected `CMAKE_` variables set as `VCKPG_DETECTED_`
|
|
||||||
|
|
||||||
## Notes
|
|
||||||
If possible avoid usage in portfiles.
|
|
||||||
|
|
||||||
## Examples
|
|
||||||
|
|
||||||
* [vcpkg_configure_make](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_configure_make.cmake)
|
|
||||||
|
|
||||||
## Source
|
|
||||||
[scripts/cmake/vcpkg\_internal\_get\_cmake\_vars.cmake](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_internal_get_cmake_vars.cmake)
|
|
36
docs/maintainers/internal/z_vcpkg_get_cmake_vars.md
Normal file
36
docs/maintainers/internal/z_vcpkg_get_cmake_vars.md
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
# z_vcpkg_get_cmake_vars
|
||||||
|
|
||||||
|
The latest version of this document lives in the [vcpkg repo](https://github.com/Microsoft/vcpkg/blob/master/docs/).
|
||||||
|
|
||||||
|
**Only for internal use in vcpkg helpers. Behavior and arguments will change without notice.**
|
||||||
|
Runs a cmake configure with a dummy project to extract certain cmake variables
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
```cmake
|
||||||
|
z_vcpkg_get_cmake_vars(<out-var>)
|
||||||
|
```
|
||||||
|
|
||||||
|
`z_vcpkg_get_cmake_vars(cmake_vars_file)` sets `<out-var>` to
|
||||||
|
a path to a generated CMake file, with the detected `CMAKE_*` variables
|
||||||
|
re-exported as `VCPKG_DETECTED_*`.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
Avoid usage in portfiles.
|
||||||
|
|
||||||
|
All calls to `z_vcpkg_get_cmake_vars` will result in the same output file;
|
||||||
|
the output file is not generated multiple times.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
* [vcpkg_configure_make](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_configure_make.cmake)
|
||||||
|
|
||||||
|
### Basic Usage
|
||||||
|
|
||||||
|
```cmake
|
||||||
|
z_vcpkg_get_cmake_vars(cmake_vars_file)
|
||||||
|
include("${cmake_vars_file}")
|
||||||
|
message(STATUS "detected CXX flags: ${VCPKG_DETECTED_CXX_FLAGS}")
|
||||||
|
```
|
||||||
|
|
||||||
|
## Source
|
||||||
|
[scripts/cmake/z\_vcpkg\_get\_cmake\_vars.cmake](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/z_vcpkg_get_cmake_vars.cmake)
|
@ -57,10 +57,10 @@
|
|||||||
|
|
||||||
## Internal Functions
|
## Internal Functions
|
||||||
|
|
||||||
- [vcpkg\_internal\_get\_cmake\_vars](internal/vcpkg_internal_get_cmake_vars.md)
|
|
||||||
- [z\_vcpkg\_apply\_patches](internal/z_vcpkg_apply_patches.md)
|
- [z\_vcpkg\_apply\_patches](internal/z_vcpkg_apply_patches.md)
|
||||||
- [z\_vcpkg\_forward\_output\_variable](internal/z_vcpkg_forward_output_variable.md)
|
- [z\_vcpkg\_forward\_output\_variable](internal/z_vcpkg_forward_output_variable.md)
|
||||||
- [z\_vcpkg\_function\_arguments](internal/z_vcpkg_function_arguments.md)
|
- [z\_vcpkg\_function\_arguments](internal/z_vcpkg_function_arguments.md)
|
||||||
|
- [z\_vcpkg\_get\_cmake\_vars](internal/z_vcpkg_get_cmake_vars.md)
|
||||||
- [z\_vcpkg\_prettify\_command\_line](internal/z_vcpkg_prettify_command_line.md)
|
- [z\_vcpkg\_prettify\_command\_line](internal/z_vcpkg_prettify_command_line.md)
|
||||||
|
|
||||||
## Scripts from Ports
|
## Scripts from Ports
|
||||||
@ -69,6 +69,7 @@
|
|||||||
|
|
||||||
- [vcpkg\_cmake\_build](ports/vcpkg-cmake/vcpkg_cmake_build.md)
|
- [vcpkg\_cmake\_build](ports/vcpkg-cmake/vcpkg_cmake_build.md)
|
||||||
- [vcpkg\_cmake\_configure](ports/vcpkg-cmake/vcpkg_cmake_configure.md)
|
- [vcpkg\_cmake\_configure](ports/vcpkg-cmake/vcpkg_cmake_configure.md)
|
||||||
|
- [vcpkg\_cmake\_get\_vars](ports/vcpkg-cmake/vcpkg_cmake_get_vars.md)
|
||||||
- [vcpkg\_cmake\_install](ports/vcpkg-cmake/vcpkg_cmake_install.md)
|
- [vcpkg\_cmake\_install](ports/vcpkg-cmake/vcpkg_cmake_install.md)
|
||||||
|
|
||||||
### [vcpkg-cmake-config](ports/vcpkg-cmake-config.md)
|
### [vcpkg-cmake-config](ports/vcpkg-cmake-config.md)
|
||||||
|
31
docs/maintainers/ports/vcpkg-cmake/vcpkg_cmake_get_vars.md
Normal file
31
docs/maintainers/ports/vcpkg-cmake/vcpkg_cmake_get_vars.md
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# vcpkg_cmake_get_vars
|
||||||
|
|
||||||
|
The latest version of this document lives in the [vcpkg repo](https://github.com/Microsoft/vcpkg/blob/master/docs/maintainers/ports/vcpkg-cmake/vcpkg_cmake_get_vars.md).
|
||||||
|
|
||||||
|
Runs a cmake configure with a dummy project to extract certain cmake variables
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
```cmake
|
||||||
|
vcpkg_cmake_get_vars(<out-var>)
|
||||||
|
```
|
||||||
|
|
||||||
|
`vcpkg_cmake_get_vars(<out-var>)` sets `<out-var>` to
|
||||||
|
a path to a generated CMake file, with the detected `CMAKE_*` variables
|
||||||
|
re-exported as `VCPKG_DETECTED_CMAKE_*`.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
Avoid usage in portfiles.
|
||||||
|
|
||||||
|
All calls to `vcpkg_cmake_get_vars` will result in the same output file;
|
||||||
|
the output file is not generated multiple times.
|
||||||
|
|
||||||
|
### Basic Usage
|
||||||
|
|
||||||
|
```cmake
|
||||||
|
vcpkg_cmake_get_vars(cmake_vars_file)
|
||||||
|
include("${cmake_vars_file}")
|
||||||
|
message(STATUS "detected CXX flags: ${VCPKG_DETECTED_CMAKE_CXX_FLAGS}")
|
||||||
|
```
|
||||||
|
|
||||||
|
## Source
|
||||||
|
[ports/vcpkg-cmake/vcpkg\_cmake\_get\_vars.cmake](https://github.com/Microsoft/vcpkg/blob/master/ports/vcpkg-cmake/vcpkg_cmake_get_vars.cmake)
|
@ -222,7 +222,7 @@ function ParseCmakeDocComment
|
|||||||
|
|
||||||
Get-ChildItem "$VcpkgRoot/scripts/cmake" -Filter '*.cmake' | ForEach-Object {
|
Get-ChildItem "$VcpkgRoot/scripts/cmake" -Filter '*.cmake' | ForEach-Object {
|
||||||
$docs = ParseCmakeDocComment $_
|
$docs = ParseCmakeDocComment $_
|
||||||
[Bool]$isInternalFunction = $_.Name.StartsWith("vcpkg_internal") -or $_.Name.StartsWith("z_vcpkg")
|
[Bool]$isInternalFunction = $_.Name.StartsWith("z_vcpkg")
|
||||||
|
|
||||||
if ($docs.IsDeprecated -and $null -eq $docs.ActualDocumentation)
|
if ($docs.IsDeprecated -and $null -eq $docs.ActualDocumentation)
|
||||||
{
|
{
|
||||||
|
@ -544,9 +544,8 @@ else()
|
|||||||
set(OPTIONS "${OPTIONS} --disable-zlib")
|
set(OPTIONS "${OPTIONS} --disable-zlib")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(CMAKE_VARS_FILE "${CURRENT_BUILDTREES_DIR}/vars.cmake")
|
vcpkg_cmake_get_vars(cmake_vars_file)
|
||||||
vcpkg_internal_get_cmake_vars(OUTPUT_FILE CMAKE_VARS_FILE)
|
include("${cmake_vars_file}")
|
||||||
include("${CMAKE_VARS_FILE}")
|
|
||||||
|
|
||||||
if (VCPKG_TARGET_IS_OSX)
|
if (VCPKG_TARGET_IS_OSX)
|
||||||
# if the sysroot isn't set in the triplet we fall back to whatever CMake detected for us
|
# if the sysroot isn't set in the triplet we fall back to whatever CMake detected for us
|
||||||
|
@ -1,13 +1,17 @@
|
|||||||
{
|
{
|
||||||
"name": "ffmpeg",
|
"name": "ffmpeg",
|
||||||
"version": "4.4",
|
"version": "4.4",
|
||||||
"port-version": 11,
|
"port-version": 12,
|
||||||
"description": [
|
"description": [
|
||||||
"a library to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created.",
|
"a library to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created.",
|
||||||
"FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure FATE across Linux, Mac OS X, Microsoft Windows, the BSDs, Solaris, etc. under a wide variety of build environments, machine architectures, and configurations."
|
"FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure FATE across Linux, Mac OS X, Microsoft Windows, the BSDs, Solaris, etc. under a wide variety of build environments, machine architectures, and configurations."
|
||||||
],
|
],
|
||||||
"homepage": "https://ffmpeg.org",
|
"homepage": "https://ffmpeg.org",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
|
{
|
||||||
|
"name": "vcpkg-cmake",
|
||||||
|
"host": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "vcpkg-pkgconfig-get-modules",
|
"name": "vcpkg-pkgconfig-get-modules",
|
||||||
"host": true
|
"host": true
|
||||||
|
148
ports/vcpkg-cmake/cmake_get_vars/CMakeLists.txt
Normal file
148
ports/vcpkg-cmake/cmake_get_vars/CMakeLists.txt
Normal file
@ -0,0 +1,148 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.20)
|
||||||
|
|
||||||
|
set(VCPKG_LANGUAGES "C;CXX" CACHE STRING "Languages to enables for this project")
|
||||||
|
|
||||||
|
set(OUTPUT_STRING)
|
||||||
|
# Build default checklists
|
||||||
|
list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_CROSSCOMPILING
|
||||||
|
CMAKE_SYSTEM_NAME
|
||||||
|
CMAKE_HOST_SYSTEM_NAME
|
||||||
|
CMAKE_SYSTEM_PROCESSOR
|
||||||
|
CMAKE_HOST_SYSTEM_PROCESSOR)
|
||||||
|
if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
||||||
|
list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_OSX_DEPLOYMENT_TARGET
|
||||||
|
CMAKE_OSX_SYSROOT)
|
||||||
|
endif()
|
||||||
|
# Programs to check
|
||||||
|
set(PROGLIST AR RANLIB STRIP NM OBJDUMP DLLTOOL MT LINKER)
|
||||||
|
foreach(prog IN LISTS PROGLIST)
|
||||||
|
list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${prog})
|
||||||
|
endforeach()
|
||||||
|
set(COMPILERS ${VCPKG_LANGUAGES} RC)
|
||||||
|
foreach(prog IN LISTS COMPILERS)
|
||||||
|
list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${prog}_COMPILER)
|
||||||
|
endforeach()
|
||||||
|
# Variables to check
|
||||||
|
foreach(_lang IN LISTS VCPKG_LANGUAGES)
|
||||||
|
list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${_lang}_STANDARD_INCLUDE_DIRECTORIES)
|
||||||
|
list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${_lang}_STANDARD_LIBRARIES)
|
||||||
|
list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${_lang}_STANDARD)
|
||||||
|
list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${_lang}_COMPILE_FEATURES)
|
||||||
|
list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${_lang}_EXTENSION)
|
||||||
|
# Probably never required since implicit.
|
||||||
|
#list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${_lang}_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES)
|
||||||
|
#list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${_lang}_IMPLICIT_INCLUDE_DIRECTORIES)
|
||||||
|
#list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${_lang}_IMPLICIT_LINK_DIRECTORIES)
|
||||||
|
#list(APPEND VCPKG_DEFAULT_VARS_TO_CHECK CMAKE_${_lang}_IMPLICIT_LINK_LIBRARIES)
|
||||||
|
endforeach()
|
||||||
|
list(REMOVE_DUPLICATES VCPKG_DEFAULT_VARS_TO_CHECK)
|
||||||
|
|
||||||
|
# Environment variables to check.
|
||||||
|
list(APPEND VCPKG_DEFAULT_ENV_VARS_TO_CHECK PATH INCLUDE C_INCLUDE_PATH CPLUS_INCLUDE_PATH LIB LIBPATH LIBRARY_PATH LD_LIBRARY_PATH)
|
||||||
|
list(REMOVE_DUPLICATES VCPKG_DEFAULT_ENV_VARS_TO_CHECK)
|
||||||
|
|
||||||
|
#Flags to check. Flags are a bit special since they are configuration aware.
|
||||||
|
set(FLAGS ${VCPKG_LANGUAGES} RC SHARED_LINKER STATIC_LINKER EXE_LINKER)
|
||||||
|
foreach(flag IN LISTS FLAGS)
|
||||||
|
list(APPEND VCPKG_DEFAULT_FLAGS_TO_CHECK CMAKE_${flag}_FLAGS)
|
||||||
|
endforeach()
|
||||||
|
list(REMOVE_DUPLICATES VCPKG_DEFAULT_FLAGS_TO_CHECK)
|
||||||
|
|
||||||
|
#Language-specific flags.
|
||||||
|
foreach(_lang IN LISTS VCPKG_LANGUAGES)
|
||||||
|
list(APPEND VCPKG_LANG_FLAGS CMAKE_${_lang}_FLAGS)
|
||||||
|
endforeach()
|
||||||
|
list(REMOVE_DUPLICATES VCPKG_LANG_FLAGS)
|
||||||
|
|
||||||
|
# TODO if ever necessary: Properties to check
|
||||||
|
|
||||||
|
set(VCPKG_VAR_PREFIX "VCPKG_DETECTED" CACHE STRING "Variable prefix to use for detected flags")
|
||||||
|
set(VCPKG_VARS_TO_CHECK "${VCPKG_DEFAULT_VARS_TO_CHECK}" CACHE STRING "Variables to check. If not given there is a list of defaults")
|
||||||
|
set(VCPKG_FLAGS_TO_CHECK "${VCPKG_DEFAULT_FLAGS_TO_CHECK}" CACHE STRING "Variables to check. If not given there is a list of defaults")
|
||||||
|
set(VCPKG_ENV_VARS_TO_CHECK "${VCPKG_DEFAULT_ENV_VARS_TO_CHECK}" CACHE STRING "Variables to check. If not given there is a list of defaults")
|
||||||
|
|
||||||
|
if(NOT VCPKG_OUTPUT_FILE)
|
||||||
|
message(FATAL_ERROR "VCPKG_OUTPUT_FILE is required to be defined")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT CMAKE_BUILD_TYPE)
|
||||||
|
message(FATAL_ERROR "CMAKE_BUILD_TYPE is required to be defined")
|
||||||
|
else()
|
||||||
|
string(TOUPPER "${CMAKE_BUILD_TYPE}" VCPKG_CONFIGS)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
project(get_cmake_vars LANGUAGES ${VCPKG_LANGUAGES})
|
||||||
|
|
||||||
|
foreach(VAR IN LISTS VCPKG_VARS_TO_CHECK)
|
||||||
|
string(APPEND OUTPUT_STRING "set(${VCPKG_VAR_PREFIX}_${VAR} \"${${VAR}}\")\n")
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
foreach(_env IN LISTS VCPKG_ENV_VARS_TO_CHECK)
|
||||||
|
if(CMAKE_HOST_WIN32)
|
||||||
|
string(REPLACE "\\" "/" ENV_${_env} "$ENV{${_env}}")
|
||||||
|
string(APPEND OUTPUT_STRING "set(${VCPKG_VAR_PREFIX}_ENV_${_env} \"${ENV_${_env}}\")\n")
|
||||||
|
else()
|
||||||
|
string(APPEND OUTPUT_STRING "set(${VCPKG_VAR_PREFIX}_ENV_${_env} \"$ENV{${_env}}\")\n")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
macro(_vcpkg_adjust_flags flag_var)
|
||||||
|
if(MSVC) # Transform MSVC /flags to -flags due to bash scripts intepreting /flag as a path.
|
||||||
|
string(REGEX REPLACE "(^| )/" "\\1-" ${flag_var} "${${flag_var}}")
|
||||||
|
endif()
|
||||||
|
if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
||||||
|
if("${flag_var}" IN_LIST VCPKG_LANG_FLAGS)
|
||||||
|
# macOS - append arch and isysroot if cross-compiling
|
||||||
|
if(NOT "${CMAKE_OSX_ARCHITECTURES}" STREQUAL "${CMAKE_HOST_SYSTEM_PROCESSOR}")
|
||||||
|
|
||||||
|
foreach(arch IN LISTS CMAKE_OSX_ARCHITECTURES)
|
||||||
|
string(APPEND ${flag_var} " -arch ${arch}")
|
||||||
|
endforeach()
|
||||||
|
string(APPEND ${flag_var} " -isysroot ${CMAKE_OSX_SYSROOT}")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endmacro()
|
||||||
|
|
||||||
|
foreach(flag IN LISTS VCPKG_FLAGS_TO_CHECK)
|
||||||
|
string(STRIP "${${flag}}" ${flag}) # Strip leading and trailing whitespaces
|
||||||
|
_vcpkg_adjust_flags(${flag})
|
||||||
|
string(APPEND OUTPUT_STRING "set(${VCPKG_VAR_PREFIX}_RAW_${flag} \" ${${flag}}\")\n")
|
||||||
|
foreach(config IN LISTS VCPKG_CONFIGS)
|
||||||
|
string(STRIP "${${flag}_${config}}" ${flag}_${config})
|
||||||
|
_vcpkg_adjust_flags(${flag}_${config})
|
||||||
|
string(APPEND OUTPUT_STRING "set(${VCPKG_VAR_PREFIX}_RAW_${flag}_${config} \"${CMAKE_${flag}_FLAGS_${config}}\")\n")
|
||||||
|
set(COMBINED_${flag}_${config} "${${flag}} ${${flag}_${config}}")
|
||||||
|
string(STRIP "${COMBINED_${flag}_${config}}" COMBINED_${flag}_${config})
|
||||||
|
string(APPEND OUTPUT_STRING "set(${VCPKG_VAR_PREFIX}_${flag}_${config} \"${COMBINED_${flag}_${config}}\")\n")
|
||||||
|
endforeach()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
|
||||||
|
file(WRITE "${VCPKG_OUTPUT_FILE}" "${OUTPUT_STRING}")
|
||||||
|
|
||||||
|
# Programs:
|
||||||
|
# CMAKE_AR
|
||||||
|
# CMAKE_<LANG>_COMPILER_AR (Wrapper)
|
||||||
|
# CMAKE_RANLIB
|
||||||
|
# CMAKE_<LANG>_COMPILER_RANLIB
|
||||||
|
# CMAKE_STRIP
|
||||||
|
# CMAKE_NM
|
||||||
|
# CMAKE_OBJDUMP
|
||||||
|
# CMAKE_DLLTOOL
|
||||||
|
# CMAKE_MT
|
||||||
|
# CMAKE_LINKER
|
||||||
|
# CMAKE_C_COMPILER
|
||||||
|
# CMAKE_CXX_COMPILER
|
||||||
|
# CMAKE_RC_COMPILER
|
||||||
|
|
||||||
|
# Flags:
|
||||||
|
# CMAKE_<LANG>_FLAGS
|
||||||
|
# CMAKE_<LANG>_FLAGS_<CONFIG>
|
||||||
|
# CMAKE_RC_FLAGS
|
||||||
|
# CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
# CMAKE_STATIC_LINKER_FLAGS
|
||||||
|
# CMAKE_STATIC_LINKER_FLAGS_<CONFIG>
|
||||||
|
# CMAKE_EXE_LINKER_FLAGS
|
||||||
|
# CMAKE_EXE_LINKER_FLAGS_<CONFIG>
|
@ -7,6 +7,8 @@ file(INSTALL
|
|||||||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_configure.cmake"
|
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_configure.cmake"
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_build.cmake"
|
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_build.cmake"
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_install.cmake"
|
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_install.cmake"
|
||||||
|
"${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_get_vars.cmake"
|
||||||
|
"${CMAKE_CURRENT_LIST_DIR}/cmake_get_vars"
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/vcpkg-port-config.cmake"
|
"${CMAKE_CURRENT_LIST_DIR}/vcpkg-port-config.cmake"
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/copyright"
|
"${CMAKE_CURRENT_LIST_DIR}/copyright"
|
||||||
DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_configure.cmake")
|
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_configure.cmake")
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_build.cmake")
|
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_build.cmake")
|
||||||
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_install.cmake")
|
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_install.cmake")
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_cmake_get_vars.cmake")
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"name": "vcpkg-cmake",
|
"name": "vcpkg-cmake",
|
||||||
"version-date": "2021-06-25",
|
"version-date": "2021-07-26"
|
||||||
"port-version": 5
|
|
||||||
}
|
}
|
||||||
|
@ -93,12 +93,12 @@ endmacro()
|
|||||||
|
|
||||||
function(vcpkg_cmake_configure)
|
function(vcpkg_cmake_configure)
|
||||||
cmake_parse_arguments(PARSE_ARGV 0 "arg"
|
cmake_parse_arguments(PARSE_ARGV 0 "arg"
|
||||||
"PREFER_NINJA;DISABLE_PARALLEL_CONFIGURE;WINDOWS_USE_MSBUILD;NO_CHARSET_FLAG"
|
"PREFER_NINJA;DISABLE_PARALLEL_CONFIGURE;WINDOWS_USE_MSBUILD;NO_CHARSET_FLAG;Z_CMAKE_GET_VARS_USAGE"
|
||||||
"SOURCE_PATH;GENERATOR;LOGFILE_BASE"
|
"SOURCE_PATH;GENERATOR;LOGFILE_BASE"
|
||||||
"OPTIONS;OPTIONS_DEBUG;OPTIONS_RELEASE;MAYBE_UNUSED_VARIABLES"
|
"OPTIONS;OPTIONS_DEBUG;OPTIONS_RELEASE;MAYBE_UNUSED_VARIABLES"
|
||||||
)
|
)
|
||||||
|
|
||||||
if(DEFINED CACHE{Z_VCPKG_CMAKE_GENERATOR})
|
if(NOT arg_Z_CMAKE_GET_VARS_USAGE AND DEFINED CACHE{Z_VCPKG_CMAKE_GENERATOR})
|
||||||
message(WARNING "vcpkg_cmake_configure already called; this function should only be called once.")
|
message(WARNING "vcpkg_cmake_configure already called; this function should only be called once.")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@ -113,14 +113,21 @@ function(vcpkg_cmake_configure)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(manually_specified_variables "")
|
set(manually_specified_variables "")
|
||||||
foreach(option IN LISTS arg_OPTIONS arg_OPTIONS_RELEASE arg_OPTIONS_DEBUG)
|
|
||||||
if(option MATCHES "^-D([^:=]*)[:=]")
|
if(arg_Z_CMAKE_GET_VARS_USAGE)
|
||||||
list(APPEND manually_specified_variables "${CMAKE_MATCH_1}")
|
set(configuring_message "Getting CMake variables for ${TARGET_TRIPLET}")
|
||||||
endif()
|
else()
|
||||||
endforeach()
|
set(configuring_message "Configuring ${TARGET_TRIPLET}")
|
||||||
list(REMOVE_DUPLICATES manually_specified_variables)
|
|
||||||
list(REMOVE_ITEM manually_specified_variables ${arg_MAYBE_UNUSED_VARIABLES})
|
foreach(option IN LISTS arg_OPTIONS arg_OPTIONS_RELEASE arg_OPTIONS_DEBUG)
|
||||||
debug_message("manually specified variables: ${manually_specified_variables}")
|
if(option MATCHES "^-D([^:=]*)[:=]")
|
||||||
|
list(APPEND manually_specified_variables "${CMAKE_MATCH_1}")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
list(REMOVE_DUPLICATES manually_specified_variables)
|
||||||
|
list(REMOVE_ITEM manually_specified_variables ${arg_MAYBE_UNUSED_VARIABLES})
|
||||||
|
debug_message("manually specified variables: ${manually_specified_variables}")
|
||||||
|
endif()
|
||||||
|
|
||||||
if(CMAKE_HOST_WIN32)
|
if(CMAKE_HOST_WIN32)
|
||||||
if(DEFINED ENV{PROCESSOR_ARCHITEW6432})
|
if(DEFINED ENV{PROCESSOR_ARCHITEW6432})
|
||||||
@ -377,7 +384,7 @@ function(vcpkg_cmake_configure)
|
|||||||
file(MAKE_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure")
|
file(MAKE_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure")
|
||||||
file(WRITE "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure/build.ninja" "${parallel_configure_contents}")
|
file(WRITE "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure/build.ninja" "${parallel_configure_contents}")
|
||||||
|
|
||||||
message(STATUS "Configuring ${TARGET_TRIPLET}")
|
message(STATUS "${configuring_message}")
|
||||||
vcpkg_execute_required_process(
|
vcpkg_execute_required_process(
|
||||||
COMMAND ninja -v
|
COMMAND ninja -v
|
||||||
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure"
|
WORKING_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure"
|
||||||
@ -388,7 +395,7 @@ function(vcpkg_cmake_configure)
|
|||||||
"${CURRENT_BUILDTREES_DIR}/${arg_LOGFILE_BASE}-err.log")
|
"${CURRENT_BUILDTREES_DIR}/${arg_LOGFILE_BASE}-err.log")
|
||||||
else()
|
else()
|
||||||
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
||||||
message(STATUS "Configuring ${TARGET_TRIPLET}-dbg")
|
message(STATUS "${configuring_message}-dbg")
|
||||||
file(MAKE_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg")
|
file(MAKE_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg")
|
||||||
vcpkg_execute_required_process(
|
vcpkg_execute_required_process(
|
||||||
COMMAND
|
COMMAND
|
||||||
@ -407,7 +414,7 @@ function(vcpkg_cmake_configure)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
|
||||||
message(STATUS "Configuring ${TARGET_TRIPLET}-rel")
|
message(STATUS "${configuring_message}-rel")
|
||||||
file(MAKE_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel")
|
file(MAKE_DIRECTORY "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel")
|
||||||
vcpkg_execute_required_process(
|
vcpkg_execute_required_process(
|
||||||
COMMAND
|
COMMAND
|
||||||
@ -458,5 +465,7 @@ Please recheck them and remove the unnecessary options from the `vcpkg_cmake_con
|
|||||||
If these options should still be passed for whatever reason, please use the `MAYBE_UNUSED_VARIABLES` argument.")
|
If these options should still be passed for whatever reason, please use the `MAYBE_UNUSED_VARIABLES` argument.")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(Z_VCPKG_CMAKE_GENERATOR "${generator}" CACHE INTERNAL "The generator which was used to configure CMake.")
|
if(NOT arg_Z_CMAKE_GET_VARS_USAGE)
|
||||||
|
set(Z_VCPKG_CMAKE_GENERATOR "${generator}" CACHE INTERNAL "The generator which was used to configure CMake.")
|
||||||
|
endif()
|
||||||
endfunction()
|
endfunction()
|
||||||
|
61
ports/vcpkg-cmake/vcpkg_cmake_get_vars.cmake
Normal file
61
ports/vcpkg-cmake/vcpkg_cmake_get_vars.cmake
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
#[===[.md:
|
||||||
|
# vcpkg_cmake_get_vars
|
||||||
|
|
||||||
|
Runs a cmake configure with a dummy project to extract certain cmake variables
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
```cmake
|
||||||
|
vcpkg_cmake_get_vars(<out-var>)
|
||||||
|
```
|
||||||
|
|
||||||
|
`vcpkg_cmake_get_vars(<out-var>)` sets `<out-var>` to
|
||||||
|
a path to a generated CMake file, with the detected `CMAKE_*` variables
|
||||||
|
re-exported as `VCPKG_DETECTED_CMAKE_*`.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
Avoid usage in portfiles.
|
||||||
|
|
||||||
|
All calls to `vcpkg_cmake_get_vars` will result in the same output file;
|
||||||
|
the output file is not generated multiple times.
|
||||||
|
|
||||||
|
### Basic Usage
|
||||||
|
|
||||||
|
```cmake
|
||||||
|
vcpkg_cmake_get_vars(cmake_vars_file)
|
||||||
|
include("${cmake_vars_file}")
|
||||||
|
message(STATUS "detected CXX flags: ${VCPKG_DETECTED_CMAKE_CXX_FLAGS}")
|
||||||
|
```
|
||||||
|
#]===]
|
||||||
|
|
||||||
|
set(Z_VCPKG_CMAKE_GET_VARS_CURRENT_LIST_DIR "${CMAKE_CURRENT_LIST_DIR}")
|
||||||
|
|
||||||
|
function(vcpkg_cmake_get_vars out_file)
|
||||||
|
cmake_parse_arguments(PARSE_ARGV 1 arg "" "" "")
|
||||||
|
|
||||||
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
||||||
|
message(FATAL_ERROR "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT DEFINED CACHE{Z_VCPKG_CMAKE_GET_VARS_FILE})
|
||||||
|
set(Z_VCPKG_CMAKE_GET_VARS_FILE "${CURRENT_BUILDTREES_DIR}/cmake-get-vars-${TARGET_TRIPLET}.cmake.log"
|
||||||
|
CACHE PATH "The file to include to access the CMake variables from a generated project.")
|
||||||
|
vcpkg_cmake_configure(
|
||||||
|
SOURCE_PATH "${Z_VCPKG_CMAKE_GET_VARS_CURRENT_LIST_DIR}/cmake_get_vars"
|
||||||
|
OPTIONS_DEBUG "-DVCPKG_OUTPUT_FILE:PATH=${CURRENT_BUILDTREES_DIR}/cmake-get-vars-${TARGET_TRIPLET}-dbg.cmake.log"
|
||||||
|
OPTIONS_RELEASE "-DVCPKG_OUTPUT_FILE:PATH=${CURRENT_BUILDTREES_DIR}/cmake-get-vars-${TARGET_TRIPLET}-rel.cmake.log"
|
||||||
|
LOGFILE_BASE cmake-get-vars-${TARGET_TRIPLET}
|
||||||
|
Z_CMAKE_GET_VARS_USAGE # be quiet, don't set variables...
|
||||||
|
)
|
||||||
|
|
||||||
|
set(include_string "")
|
||||||
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
|
||||||
|
string(APPEND include_string "include(\"\${CMAKE_CURRENT_LIST_DIR}/cmake-get-vars-${TARGET_TRIPLET}-rel.cmake.log\")\n")
|
||||||
|
endif()
|
||||||
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
||||||
|
string(APPEND include_string "include(\"\${CMAKE_CURRENT_LIST_DIR}/cmake-get-vars-${TARGET_TRIPLET}-dbg.cmake.log\")\n")
|
||||||
|
endif()
|
||||||
|
file(WRITE "${Z_VCPKG_CMAKE_GET_VARS_FILE}" "${include_string}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set("${out_file}" "${Z_VCPKG_CMAKE_GET_VARS_FILE}" PARENT_SCOPE)
|
||||||
|
endfunction()
|
@ -385,39 +385,24 @@ set(_VCPKG_INSTALLED_DIR "${VCPKG_INSTALLED_DIR}"
|
|||||||
CACHE PATH
|
CACHE PATH
|
||||||
"The directory which contains the installed libraries for each triplet" FORCE)
|
"The directory which contains the installed libraries for each triplet" FORCE)
|
||||||
|
|
||||||
if(VCPKG_PREFER_SYSTEM_LIBS)
|
function(z_vcpkg_add_vcpkg_to_cmake_path list suffix)
|
||||||
set(Z_VCPKG_PATH_LIST_OP APPEND)
|
set(vcpkg_paths
|
||||||
else()
|
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}${suffix}"
|
||||||
set(Z_VCPKG_PATH_LIST_OP PREPEND)
|
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug${suffix}"
|
||||||
endif()
|
|
||||||
|
|
||||||
if(CMAKE_BUILD_TYPE MATCHES "^[Dd][Ee][Bb][Uu][Gg]$" OR NOT DEFINED CMAKE_BUILD_TYPE) #Debug build: Put Debug paths before Release paths.
|
|
||||||
list(${Z_VCPKG_PATH_LIST_OP} CMAKE_PREFIX_PATH
|
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug"
|
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}"
|
|
||||||
)
|
)
|
||||||
list(${Z_VCPKG_PATH_LIST_OP} CMAKE_LIBRARY_PATH
|
if(NOT DEFINED CMAKE_BUILD_TYPE OR CMAKE_BUILD_TYPE MATCHES "^[Dd][Ee][Bb][Uu][Gg]$")
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug/lib/manual-link"
|
list(REVERSE vcpkg_paths) # Debug build: Put Debug paths before Release paths.
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/lib/manual-link"
|
endif()
|
||||||
)
|
if(VCPKG_PREFER_SYSTEM_LIBS)
|
||||||
list(${Z_VCPKG_PATH_LIST_OP} CMAKE_FIND_ROOT_PATH
|
list(APPEND "${list}" "${vcpkg_paths}")
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug"
|
else()
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}"
|
list(INSERT "${list}" 0 "${vcpkg_paths}") # CMake 3.15 is required for list(PREPEND ...).
|
||||||
)
|
endif()
|
||||||
else() #Release build: Put Release paths before Debug paths. Debug Paths are required so that CMake generates correct info in autogenerated target files.
|
set("${list}" "${${list}}" PARENT_SCOPE)
|
||||||
list(${Z_VCPKG_PATH_LIST_OP} CMAKE_PREFIX_PATH
|
endfunction()
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}"
|
z_vcpkg_add_vcpkg_to_cmake_path(CMAKE_PREFIX_PATH "")
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug"
|
z_vcpkg_add_vcpkg_to_cmake_path(CMAKE_LIBRARY_PATH "/lib/manual-link")
|
||||||
)
|
z_vcpkg_add_vcpkg_to_cmake_path(CMAKE_FIND_ROOT_PATH "")
|
||||||
list(${Z_VCPKG_PATH_LIST_OP} CMAKE_LIBRARY_PATH
|
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/lib/manual-link"
|
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug/lib/manual-link"
|
|
||||||
)
|
|
||||||
list(${Z_VCPKG_PATH_LIST_OP} CMAKE_FIND_ROOT_PATH
|
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}"
|
|
||||||
"${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug"
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# If one CMAKE_FIND_ROOT_PATH_MODE_* variables is set to ONLY, to make sure that ${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}
|
# If one CMAKE_FIND_ROOT_PATH_MODE_* variables is set to ONLY, to make sure that ${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}
|
||||||
# and ${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug are searched, it is not sufficient to just add them to CMAKE_FIND_ROOT_PATH,
|
# and ${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/debug are searched, it is not sufficient to just add them to CMAKE_FIND_ROOT_PATH,
|
||||||
@ -692,7 +677,7 @@ if(X_VCPKG_APPLOCAL_DEPS_INSTALL)
|
|||||||
list(APPEND parsed_targets "${arg}")
|
list(APPEND parsed_targets "${arg}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(last_command STREQUAL "DESTINATION" AND (MODIFIER STREQUAL "" OR MODIFIER STREQUAL "RUNTIME"))
|
if(last_command STREQUAL "DESTINATION" AND (modifier STREQUAL "" OR modifier STREQUAL "RUNTIME"))
|
||||||
set(destination "${arg}")
|
set(destination "${arg}")
|
||||||
endif()
|
endif()
|
||||||
if(last_command STREQUAL "COMPONENT")
|
if(last_command STREQUAL "COMPONENT")
|
||||||
|
@ -51,11 +51,8 @@ You can use the alias [`vcpkg_install_make()`](vcpkg_install_make.md) function i
|
|||||||
#]===]
|
#]===]
|
||||||
|
|
||||||
function(vcpkg_build_make)
|
function(vcpkg_build_make)
|
||||||
if(NOT _VCPKG_CMAKE_VARS_FILE)
|
z_vcpkg_get_cmake_vars(cmake_vars_file)
|
||||||
# vcpkg_build_make called without using vcpkg_configure_make before
|
include("${cmake_vars_file}")
|
||||||
vcpkg_internal_get_cmake_vars(OUTPUT_FILE _VCPKG_CMAKE_VARS_FILE)
|
|
||||||
endif()
|
|
||||||
include("${_VCPKG_CMAKE_VARS_FILE}")
|
|
||||||
|
|
||||||
# parse parameters such that semicolons in options arguments to COMMAND don't get erased
|
# parse parameters such that semicolons in options arguments to COMMAND don't get erased
|
||||||
cmake_parse_arguments(PARSE_ARGV 0 _bc "ADD_BIN_TO_PATH;ENABLE_INSTALL;DISABLE_PARALLEL" "LOGFILE_ROOT;BUILD_TARGET;SUBPATH;MAKEFILE;INSTALL_TARGET" "")
|
cmake_parse_arguments(PARSE_ARGV 0 _bc "ADD_BIN_TO_PATH;ENABLE_INSTALL;DISABLE_PARALLEL" "LOGFILE_ROOT;BUILD_TARGET;SUBPATH;MAKEFILE;INSTALL_TARGET" "")
|
||||||
|
@ -35,24 +35,38 @@ This command will either alter the settings for `VCPKG_LIBRARY_LINKAGE` or fail,
|
|||||||
#]===]
|
#]===]
|
||||||
|
|
||||||
function(vcpkg_check_linkage)
|
function(vcpkg_check_linkage)
|
||||||
cmake_parse_arguments(_csc "ONLY_STATIC_LIBRARY;ONLY_DYNAMIC_LIBRARY;ONLY_DYNAMIC_CRT;ONLY_STATIC_CRT" "" "" ${ARGN})
|
cmake_parse_arguments(PARSE_ARGV 0 arg
|
||||||
|
"ONLY_STATIC_LIBRARY;ONLY_DYNAMIC_LIBRARY;ONLY_DYNAMIC_CRT;ONLY_STATIC_CRT"
|
||||||
|
""
|
||||||
|
""
|
||||||
|
)
|
||||||
|
|
||||||
if(_csc_ONLY_STATIC_LIBRARY AND VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
||||||
|
message(WARNING "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(arg_ONLY_STATIC_LIBRARY AND arg_ONLY_DYNAMIC_LIBRARY)
|
||||||
|
message(FATAL_ERROR "Requesting both ONLY_STATIC_LIBRARY and ONLY_DYNAMIC_LIBRARY; this is an error.")
|
||||||
|
endif()
|
||||||
|
if(arg_ONLY_STATIC_CRT AND arg_ONLY_DYNAMIC_CRT)
|
||||||
|
message(FATAL_ERROR "Requesting both ONLY_STATIC_CRT and ONLY_DYNAMIC_CRT; this is an error.")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(arg_ONLY_STATIC_LIBRARY AND "${VCPKG_LIBRARY_LINKAGE}" STREQUAL "dynamic")
|
||||||
message(STATUS "Note: ${PORT} only supports static library linkage. Building static library.")
|
message(STATUS "Note: ${PORT} only supports static library linkage. Building static library.")
|
||||||
set(VCPKG_LIBRARY_LINKAGE static PARENT_SCOPE)
|
set(VCPKG_LIBRARY_LINKAGE static PARENT_SCOPE)
|
||||||
endif()
|
elseif(arg_ONLY_DYNAMIC_LIBRARY AND "${VCPKG_LIBRARY_LINKAGE}" STREQUAL "static")
|
||||||
if(_csc_ONLY_DYNAMIC_LIBRARY AND VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
||||||
message(STATUS "Note: ${PORT} only supports dynamic library linkage. Building dynamic library.")
|
message(STATUS "Note: ${PORT} only supports dynamic library linkage. Building dynamic library.")
|
||||||
if(VCPKG_CRT_LINKAGE STREQUAL "static")
|
if("${VCPKG_CRT_LINKAGE}" STREQUAL "static")
|
||||||
message(FATAL_ERROR "Refusing to build unexpected dynamic library against the static CRT. If this is desired, please configure your triplet to directly request this configuration.")
|
message(FATAL_ERROR "Refusing to build unexpected dynamic library against the static CRT.
|
||||||
|
If this is desired, please configure your triplet to directly request this configuration.")
|
||||||
endif()
|
endif()
|
||||||
set(VCPKG_LIBRARY_LINKAGE dynamic PARENT_SCOPE)
|
set(VCPKG_LIBRARY_LINKAGE dynamic PARENT_SCOPE)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(_csc_ONLY_DYNAMIC_CRT AND VCPKG_CRT_LINKAGE STREQUAL "static")
|
if(arg_ONLY_DYNAMIC_CRT AND "${VCPKG_CRT_LINKAGE}" STREQUAL "static")
|
||||||
message(FATAL_ERROR "${PORT} only supports dynamic crt linkage")
|
message(FATAL_ERROR "${PORT} only supports dynamic crt linkage")
|
||||||
endif()
|
elseif(arg_ONLY_STATIC_CRT AND "${VCPKG_CRT_LINKAGE}" STREQUAL "dynamic")
|
||||||
if(_csc_ONLY_STATIC_CRT AND VCPKG_CRT_LINKAGE STREQUAL "dynamic")
|
|
||||||
message(FATAL_ERROR "${PORT} only supports static crt linkage")
|
message(FATAL_ERROR "${PORT} only supports static crt linkage")
|
||||||
endif()
|
endif()
|
||||||
endfunction()
|
endfunction()
|
||||||
|
@ -21,15 +21,35 @@ Generally, there is no need to call this function manually. Instead, pass an ext
|
|||||||
* [czmq](https://github.com/microsoft/vcpkg/blob/master/ports/czmq/portfile.cmake)
|
* [czmq](https://github.com/microsoft/vcpkg/blob/master/ports/czmq/portfile.cmake)
|
||||||
#]===]
|
#]===]
|
||||||
|
|
||||||
function(vcpkg_clean_executables_in_bin)
|
function(z_vcpkg_clean_executables_in_bin_remove_directory_if_empty directory)
|
||||||
# parse parameters such that semicolons in options arguments to COMMAND don't get erased
|
if(NOT EXISTS "${directory}")
|
||||||
cmake_parse_arguments(PARSE_ARGV 0 _vct "" "" "FILE_NAMES")
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
if(NOT DEFINED _vct_FILE_NAMES)
|
if(NOT IS_DIRECTORY "${directory}")
|
||||||
|
message(FATAL_ERROR "${directory} must be a directory")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
file(GLOB items "${directory}/*")
|
||||||
|
if("${items}" STREQUAL "")
|
||||||
|
file(REMOVE_RECURSE "${directory}")
|
||||||
|
endif()
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
|
||||||
|
function(vcpkg_clean_executables_in_bin)
|
||||||
|
cmake_parse_arguments(PARSE_ARGV 0 arg "" "" "FILE_NAMES")
|
||||||
|
|
||||||
|
if(NOT DEFINED arg_FILE_NAMES)
|
||||||
message(FATAL_ERROR "FILE_NAMES must be specified.")
|
message(FATAL_ERROR "FILE_NAMES must be specified.")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
foreach(file_name IN LISTS _vct_FILE_NAMES)
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
||||||
|
message(WARNING "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
foreach(file_name IN LISTS arg_FILE_NAMES)
|
||||||
file(REMOVE
|
file(REMOVE
|
||||||
"${CURRENT_PACKAGES_DIR}/bin/${file_name}${VCPKG_TARGET_EXECUTABLE_SUFFIX}"
|
"${CURRENT_PACKAGES_DIR}/bin/${file_name}${VCPKG_TARGET_EXECUTABLE_SUFFIX}"
|
||||||
"${CURRENT_PACKAGES_DIR}/debug/bin/${file_name}${VCPKG_TARGET_EXECUTABLE_SUFFIX}"
|
"${CURRENT_PACKAGES_DIR}/debug/bin/${file_name}${VCPKG_TARGET_EXECUTABLE_SUFFIX}"
|
||||||
@ -38,27 +58,6 @@ function(vcpkg_clean_executables_in_bin)
|
|||||||
)
|
)
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
function(try_remove_empty_directory directory)
|
z_vcpkg_clean_executables_in_bin_remove_directory_if_empty("${CURRENT_PACKAGES_DIR}/bin")
|
||||||
if(NOT EXISTS "${directory}")
|
z_vcpkg_clean_executables_in_bin_remove_directory_if_empty("${CURRENT_PACKAGES_DIR}/debug/bin")
|
||||||
return()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(NOT IS_DIRECTORY "${directory}")
|
|
||||||
message(FATAL_ERROR "${directory} is supposed to be an existing directory.")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# TODO:
|
|
||||||
# For an empty directory,
|
|
||||||
# file(GLOB items "${directory}" "${directory}/*")
|
|
||||||
# will return a list with one item.
|
|
||||||
file(GLOB items "${directory}/" "${directory}/*")
|
|
||||||
list(LENGTH items items_count)
|
|
||||||
|
|
||||||
if(${items_count} EQUAL 0)
|
|
||||||
file(REMOVE_RECURSE "${directory}")
|
|
||||||
endif()
|
|
||||||
endfunction()
|
|
||||||
|
|
||||||
try_remove_empty_directory("${CURRENT_PACKAGES_DIR}/bin")
|
|
||||||
try_remove_empty_directory("${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
||||||
endfunction()
|
endfunction()
|
||||||
|
@ -72,16 +72,16 @@ This command supplies many common arguments to CMake. To see the full list, exam
|
|||||||
#]===]
|
#]===]
|
||||||
|
|
||||||
function(vcpkg_configure_cmake)
|
function(vcpkg_configure_cmake)
|
||||||
if(Z_VCPKG_CMAKE_CONFIGURE_GUARD)
|
|
||||||
message(FATAL_ERROR "The ${PORT} port already depends on vcpkg-cmake; using both vcpkg-cmake and vcpkg_configure_cmake in the same port is unsupported.")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
cmake_parse_arguments(PARSE_ARGV 0 arg
|
cmake_parse_arguments(PARSE_ARGV 0 arg
|
||||||
"PREFER_NINJA;DISABLE_PARALLEL_CONFIGURE;NO_CHARSET_FLAG;Z_VCPKG_IGNORE_UNUSED_VARIABLES"
|
"PREFER_NINJA;DISABLE_PARALLEL_CONFIGURE;NO_CHARSET_FLAG;Z_GET_CMAKE_VARS_USAGE"
|
||||||
"SOURCE_PATH;GENERATOR;LOGNAME"
|
"SOURCE_PATH;GENERATOR;LOGNAME"
|
||||||
"OPTIONS;OPTIONS_DEBUG;OPTIONS_RELEASE;MAYBE_UNUSED_VARIABLES"
|
"OPTIONS;OPTIONS_DEBUG;OPTIONS_RELEASE;MAYBE_UNUSED_VARIABLES"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(NOT arg_Z_GET_CMAKE_VARS_USAGE AND Z_VCPKG_CMAKE_CONFIGURE_GUARD)
|
||||||
|
message(FATAL_ERROR "The ${PORT} port already depends on vcpkg-cmake; using both vcpkg-cmake and vcpkg_configure_cmake in the same port is unsupported.")
|
||||||
|
endif()
|
||||||
|
|
||||||
if(NOT VCPKG_PLATFORM_TOOLSET)
|
if(NOT VCPKG_PLATFORM_TOOLSET)
|
||||||
message(FATAL_ERROR "Vcpkg has been updated with VS2017 support; "
|
message(FATAL_ERROR "Vcpkg has been updated with VS2017 support; "
|
||||||
"however, vcpkg.exe must be rebuilt by re-running bootstrap-vcpkg.bat\n")
|
"however, vcpkg.exe must be rebuilt by re-running bootstrap-vcpkg.bat\n")
|
||||||
@ -92,7 +92,12 @@ function(vcpkg_configure_cmake)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(manually_specified_variables "")
|
set(manually_specified_variables "")
|
||||||
if(NOT arg_Z_VCPKG_IGNORE_UNUSED_VARIABLES)
|
|
||||||
|
if(arg_Z_GET_CMAKE_VARS_USAGE)
|
||||||
|
set(configuring_message "Getting CMake variables for ${TARGET_TRIPLET}")
|
||||||
|
else()
|
||||||
|
set(configuring_message "Configuring ${TARGET_TRIPLET}")
|
||||||
|
|
||||||
foreach(option IN LISTS arg_OPTIONS arg_OPTIONS_RELEASE arg_OPTIONS_DEBUG)
|
foreach(option IN LISTS arg_OPTIONS arg_OPTIONS_RELEASE arg_OPTIONS_DEBUG)
|
||||||
if(option MATCHES "^-D([^:=]*)[:=]")
|
if(option MATCHES "^-D([^:=]*)[:=]")
|
||||||
list(APPEND manually_specified_variables "${CMAKE_MATCH_1}")
|
list(APPEND manually_specified_variables "${CMAKE_MATCH_1}")
|
||||||
@ -336,7 +341,7 @@ function(vcpkg_configure_cmake)
|
|||||||
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure)
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure)
|
||||||
file(WRITE ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure/build.ninja "${_contents}")
|
file(WRITE ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure/build.ninja "${_contents}")
|
||||||
|
|
||||||
message(STATUS "Configuring ${TARGET_TRIPLET}")
|
message(STATUS "${configuring_message}")
|
||||||
vcpkg_execute_required_process(
|
vcpkg_execute_required_process(
|
||||||
COMMAND ninja -v
|
COMMAND ninja -v
|
||||||
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure
|
WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/vcpkg-parallel-configure
|
||||||
@ -348,7 +353,7 @@ function(vcpkg_configure_cmake)
|
|||||||
"${CURRENT_BUILDTREES_DIR}/${arg_LOGNAME}-err.log")
|
"${CURRENT_BUILDTREES_DIR}/${arg_LOGNAME}-err.log")
|
||||||
else()
|
else()
|
||||||
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
||||||
message(STATUS "Configuring ${TARGET_TRIPLET}-dbg")
|
message(STATUS "${configuring_message}-dbg")
|
||||||
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg)
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg)
|
||||||
vcpkg_execute_required_process(
|
vcpkg_execute_required_process(
|
||||||
COMMAND ${dbg_command}
|
COMMAND ${dbg_command}
|
||||||
@ -361,7 +366,7 @@ function(vcpkg_configure_cmake)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
|
||||||
message(STATUS "Configuring ${TARGET_TRIPLET}-rel")
|
message(STATUS "${configuring_message}-rel")
|
||||||
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel)
|
file(MAKE_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel)
|
||||||
vcpkg_execute_required_process(
|
vcpkg_execute_required_process(
|
||||||
COMMAND ${rel_command}
|
COMMAND ${rel_command}
|
||||||
@ -408,5 +413,7 @@ Please recheck them and remove the unnecessary options from the `vcpkg_configure
|
|||||||
If these options should still be passed for whatever reason, please use the `MAYBE_UNUSED_VARIABLES` argument.")
|
If these options should still be passed for whatever reason, please use the `MAYBE_UNUSED_VARIABLES` argument.")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(Z_VCPKG_CMAKE_GENERATOR "${GENERATOR}" PARENT_SCOPE)
|
if(NOT arg_Z_GET_CMAKE_VARS_USAGE)
|
||||||
|
set(Z_VCPKG_CMAKE_GENERATOR "${GENERATOR}" PARENT_SCOPE)
|
||||||
|
endif()
|
||||||
endfunction()
|
endfunction()
|
||||||
|
@ -236,10 +236,9 @@ function(vcpkg_configure_make)
|
|||||||
"SOURCE_PATH;PROJECT_SUBPATH;PRERUN_SHELL;BUILD_TRIPLET"
|
"SOURCE_PATH;PROJECT_SUBPATH;PRERUN_SHELL;BUILD_TRIPLET"
|
||||||
"OPTIONS;OPTIONS_DEBUG;OPTIONS_RELEASE;CONFIGURE_ENVIRONMENT_VARIABLES;CONFIG_DEPENDENT_ENVIRONMENT;ADDITIONAL_MSYS_PACKAGES"
|
"OPTIONS;OPTIONS_DEBUG;OPTIONS_RELEASE;CONFIGURE_ENVIRONMENT_VARIABLES;CONFIG_DEPENDENT_ENVIRONMENT;ADDITIONAL_MSYS_PACKAGES"
|
||||||
)
|
)
|
||||||
vcpkg_internal_get_cmake_vars(OUTPUT_FILE _VCPKG_CMAKE_VARS_FILE)
|
z_vcpkg_get_cmake_vars(cmake_vars_file)
|
||||||
set(_VCPKG_CMAKE_VARS_FILE "${_VCPKG_CMAKE_VARS_FILE}" PARENT_SCOPE)
|
debug_message("Including cmake vars from: ${cmake_vars_file}")
|
||||||
debug_message("Including cmake vars from: ${_VCPKG_CMAKE_VARS_FILE}")
|
include("${cmake_vars_file}")
|
||||||
include("${_VCPKG_CMAKE_VARS_FILE}")
|
|
||||||
if(DEFINED VCPKG_MAKE_BUILD_TRIPLET)
|
if(DEFINED VCPKG_MAKE_BUILD_TRIPLET)
|
||||||
set(_csc_BUILD_TRIPLET ${VCPKG_MAKE_BUILD_TRIPLET}) # Triplet overwrite for crosscompiling
|
set(_csc_BUILD_TRIPLET ${VCPKG_MAKE_BUILD_TRIPLET}) # Triplet overwrite for crosscompiling
|
||||||
endif()
|
endif()
|
||||||
|
@ -356,10 +356,9 @@ function(vcpkg_configure_meson)
|
|||||||
file(REMOVE_RECURSE "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel")
|
file(REMOVE_RECURSE "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel")
|
||||||
file(REMOVE_RECURSE "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg")
|
file(REMOVE_RECURSE "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg")
|
||||||
|
|
||||||
vcpkg_internal_get_cmake_vars(OUTPUT_FILE _VCPKG_CMAKE_VARS_FILE)
|
z_vcpkg_get_cmake_vars(cmake_vars_file)
|
||||||
set(_VCPKG_CMAKE_VARS_FILE "${_VCPKG_CMAKE_VARS_FILE}" PARENT_SCOPE)
|
debug_message("Including cmake vars from: ${cmake_vars_file}")
|
||||||
debug_message("Including cmake vars from: ${_VCPKG_CMAKE_VARS_FILE}")
|
include("${cmake_vars_file}")
|
||||||
include("${_VCPKG_CMAKE_VARS_FILE}")
|
|
||||||
|
|
||||||
vcpkg_find_acquire_program(PYTHON3)
|
vcpkg_find_acquire_program(PYTHON3)
|
||||||
get_filename_component(PYTHON3_DIR "${PYTHON3}" DIRECTORY)
|
get_filename_component(PYTHON3_DIR "${PYTHON3}" DIRECTORY)
|
||||||
|
@ -27,15 +27,18 @@ This command should always be called by portfiles after they have finished rearr
|
|||||||
function(vcpkg_copy_pdbs)
|
function(vcpkg_copy_pdbs)
|
||||||
cmake_parse_arguments(PARSE_ARGV 0 "arg" "" "" "BUILD_PATHS")
|
cmake_parse_arguments(PARSE_ARGV 0 "arg" "" "" "BUILD_PATHS")
|
||||||
|
|
||||||
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
||||||
|
message(WARNING "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
||||||
|
endif()
|
||||||
|
|
||||||
if(NOT DEFINED arg_BUILD_PATHS)
|
if(NOT DEFINED arg_BUILD_PATHS)
|
||||||
set(
|
set(arg_BUILD_PATHS
|
||||||
arg_BUILD_PATHS
|
|
||||||
"${CURRENT_PACKAGES_DIR}/bin/*.dll"
|
"${CURRENT_PACKAGES_DIR}/bin/*.dll"
|
||||||
"${CURRENT_PACKAGES_DIR}/debug/bin/*.dll"
|
"${CURRENT_PACKAGES_DIR}/debug/bin/*.dll"
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(dlls_without_matching_pdbs)
|
set(dlls_without_matching_pdbs "")
|
||||||
|
|
||||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic" AND VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW)
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic" AND VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW)
|
||||||
file(GLOB_RECURSE dlls ${arg_BUILD_PATHS})
|
file(GLOB_RECURSE dlls ${arg_BUILD_PATHS})
|
||||||
@ -44,17 +47,16 @@ function(vcpkg_copy_pdbs)
|
|||||||
set(ENV{VSLANG} 1033)
|
set(ENV{VSLANG} 1033)
|
||||||
|
|
||||||
foreach(dll IN LISTS dlls)
|
foreach(dll IN LISTS dlls)
|
||||||
execute_process(COMMAND dumpbin /PDBPATH ${dll}
|
execute_process(COMMAND dumpbin /PDBPATH "${dll}"
|
||||||
COMMAND findstr PDB
|
COMMAND findstr PDB
|
||||||
OUTPUT_VARIABLE pdb_line
|
OUTPUT_VARIABLE pdb_line
|
||||||
ERROR_QUIET
|
ERROR_QUIET
|
||||||
RESULT_VARIABLE error_code
|
RESULT_VARIABLE error_code
|
||||||
)
|
)
|
||||||
|
|
||||||
if(NOT error_code AND pdb_line MATCHES "PDB file found at")
|
if(error_code EQUAL "0" AND pdb_line MATCHES "PDB file found at.*'(.*)'")
|
||||||
string(REGEX MATCH [['.*']] pdb_path "${pdb_line}") # Extract the path which is in single quotes
|
set(pdb_path "${CMAKE_MATCH_1}")
|
||||||
string(REPLACE "'" "" pdb_path "${pdb_path}") # Remove single quotes
|
cmake_path(GET dll PARENT_PATH dll_dir)
|
||||||
get_filename_component(dll_dir "${dll}" DIRECTORY)
|
|
||||||
file(COPY "${pdb_path}" DESTINATION "${dll_dir}")
|
file(COPY "${pdb_path}" DESTINATION "${dll_dir}")
|
||||||
else()
|
else()
|
||||||
list(APPEND dlls_without_matching_pdbs "${dll}")
|
list(APPEND dlls_without_matching_pdbs "${dll}")
|
||||||
@ -63,10 +65,10 @@ function(vcpkg_copy_pdbs)
|
|||||||
|
|
||||||
set(ENV{VSLANG} "${vslang_backup}")
|
set(ENV{VSLANG} "${vslang_backup}")
|
||||||
|
|
||||||
list(LENGTH dlls_without_matching_pdbs unmatched_dlls_length)
|
if(NOT unmatched_dlls_length STREQUAL "")
|
||||||
if(unmatched_dlls_length GREATER 0)
|
|
||||||
list(JOIN dlls_without_matching_pdbs "\n " message)
|
list(JOIN dlls_without_matching_pdbs "\n " message)
|
||||||
message(WARNING "Could not find a matching pdb file for:${message}\n")
|
message(WARNING "Could not find a matching pdb file for:
|
||||||
|
${message}\n")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@ -19,29 +19,31 @@ This command should always be called by portfiles after they have finished rearr
|
|||||||
* [fltk](https://github.com/Microsoft/vcpkg/blob/master/ports/fltk/portfile.cmake)
|
* [fltk](https://github.com/Microsoft/vcpkg/blob/master/ports/fltk/portfile.cmake)
|
||||||
#]===]
|
#]===]
|
||||||
|
|
||||||
function(vcpkg_copy_tool_dependencies TOOL_DIR)
|
function(z_vcpkg_copy_tool_dependencies_search tool_dir path_to_search)
|
||||||
if (VCPKG_TARGET_IS_WINDOWS)
|
file(GLOB tools "${tool_dir}/*.exe" "${tool_dir}/*.dll" "${tool_dir}/*.pyd")
|
||||||
find_program(PWSH_EXE pwsh)
|
foreach(tool IN LISTS tools)
|
||||||
if (NOT PWSH_EXE)
|
vcpkg_execute_required_process(
|
||||||
if(UNIX AND NOT CYGWIN)
|
COMMAND "${Z_VCPKG_POWERSHELL_CORE}" -noprofile -executionpolicy Bypass -nologo
|
||||||
message(FATAL_ERROR "Could not find PowerShell Core; install PowerShell Core as described here: https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-linux")
|
-file "${SCRIPTS}/buildsystems/msbuild/applocal.ps1"
|
||||||
endif()
|
-targetBinary "${tool}"
|
||||||
|
-installedDir "${path_to_search}"
|
||||||
|
WORKING_DIRECTORY "${VCPKG_ROOT_DIR}"
|
||||||
|
LOGNAME copy-tool-dependencies
|
||||||
|
)
|
||||||
|
endforeach()
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
function(vcpkg_copy_tool_dependencies tool_dir)
|
||||||
|
if(ARGC GREATER 1)
|
||||||
|
message(WARNING "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${ARGN}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(VCPKG_TARGET_IS_WINDOWS)
|
||||||
|
find_program(Z_VCPKG_POWERSHELL_CORE pwsh)
|
||||||
|
if (NOT Z_VCPKG_POWERSHELL_CORE)
|
||||||
message(FATAL_ERROR "Could not find PowerShell Core; please open an issue to report this.")
|
message(FATAL_ERROR "Could not find PowerShell Core; please open an issue to report this.")
|
||||||
endif()
|
endif()
|
||||||
macro(search_for_dependencies PATH_TO_SEARCH)
|
z_vcpkg_copy_tool_dependencies_search("${tool_dir}" "${CURRENT_PACKAGES_DIR}/bin")
|
||||||
file(GLOB TOOLS "${TOOL_DIR}/*.exe" "${TOOL_DIR}/*.dll" "${TOOL_DIR}/*.pyd")
|
z_vcpkg_copy_tool_dependencies_search("${tool_dir}" "${CURRENT_INSTALLED_DIR}/bin")
|
||||||
foreach(TOOL IN LISTS TOOLS)
|
|
||||||
vcpkg_execute_required_process(
|
|
||||||
COMMAND "${PWSH_EXE}" -noprofile -executionpolicy Bypass -nologo
|
|
||||||
-file "${SCRIPTS}/buildsystems/msbuild/applocal.ps1"
|
|
||||||
-targetBinary "${TOOL}"
|
|
||||||
-installedDir "${PATH_TO_SEARCH}"
|
|
||||||
WORKING_DIRECTORY "${VCPKG_ROOT_DIR}"
|
|
||||||
LOGNAME copy-tool-dependencies
|
|
||||||
)
|
|
||||||
endforeach()
|
|
||||||
endmacro()
|
|
||||||
search_for_dependencies("${CURRENT_PACKAGES_DIR}/bin")
|
|
||||||
search_for_dependencies("${CURRENT_INSTALLED_DIR}/bin")
|
|
||||||
endif()
|
endif()
|
||||||
endfunction()
|
endfunction()
|
||||||
|
@ -33,39 +33,43 @@ Auto clean executables in `${CURRENT_PACKAGES_DIR}/bin` and `${CURRENT_PACKAGES_
|
|||||||
#]===]
|
#]===]
|
||||||
|
|
||||||
function(vcpkg_copy_tools)
|
function(vcpkg_copy_tools)
|
||||||
# parse parameters such that semicolons in options arguments to COMMAND don't get erased
|
cmake_parse_arguments(PARSE_ARGV 0 arg "AUTO_CLEAN" "SEARCH_DIR;DESTINATION" "TOOL_NAMES")
|
||||||
cmake_parse_arguments(PARSE_ARGV 0 _vct "AUTO_CLEAN" "SEARCH_DIR;DESTINATION" "TOOL_NAMES")
|
|
||||||
|
|
||||||
if(NOT DEFINED _vct_TOOL_NAMES)
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
||||||
|
message(WARNING "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT DEFINED arg_TOOL_NAMES)
|
||||||
message(FATAL_ERROR "TOOL_NAMES must be specified.")
|
message(FATAL_ERROR "TOOL_NAMES must be specified.")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT DEFINED _vct_DESTINATION)
|
if(NOT DEFINED arg_DESTINATION)
|
||||||
set(_vct_DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}")
|
set(arg_DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT DEFINED _vct_SEARCH_DIR)
|
if(NOT DEFINED arg_SEARCH_DIR)
|
||||||
set(_vct_SEARCH_DIR "${CURRENT_PACKAGES_DIR}/bin")
|
set(arg_SEARCH_DIR "${CURRENT_PACKAGES_DIR}/bin")
|
||||||
elseif(NOT IS_DIRECTORY ${_vct_SEARCH_DIR})
|
elseif(NOT IS_DIRECTORY "${arg_SEARCH_DIR}")
|
||||||
message(FATAL_ERROR "SEARCH_DIR ${_vct_SEARCH_DIR} is supposed to be a directory.")
|
message(FATAL_ERROR "SEARCH_DIR (${arg_SEARCH_DIR}) must be a directory")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
foreach(tool_name IN LISTS _vct_TOOL_NAMES)
|
foreach(tool_name IN LISTS arg_TOOL_NAMES)
|
||||||
set(tool_path "${_vct_SEARCH_DIR}/${tool_name}${VCPKG_TARGET_EXECUTABLE_SUFFIX}")
|
set(tool_path "${arg_SEARCH_DIR}/${tool_name}${VCPKG_TARGET_EXECUTABLE_SUFFIX}")
|
||||||
set(tool_pdb "${_vct_SEARCH_DIR}/${tool_name}.pdb")
|
set(tool_pdb "${arg_SEARCH_DIR}/${tool_name}.pdb")
|
||||||
if(EXISTS "${tool_path}")
|
if(EXISTS "${tool_path}")
|
||||||
file(COPY "${tool_path}" DESTINATION "${_vct_DESTINATION}")
|
file(COPY "${tool_path}" DESTINATION "${arg_DESTINATION}")
|
||||||
else()
|
else()
|
||||||
message(FATAL_ERROR "Couldn't find this tool: ${tool_path}.")
|
message(FATAL_ERROR "Couldn't find tool \"${tool_name}\":
|
||||||
|
\"${tool_path}\" does not exist")
|
||||||
endif()
|
endif()
|
||||||
if(EXISTS "${tool_pdb}")
|
if(EXISTS "${tool_pdb}")
|
||||||
file(COPY "${tool_pdb}" DESTINATION "${_vct_DESTINATION}")
|
file(COPY "${tool_pdb}" DESTINATION "${arg_DESTINATION}")
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
if(_vct_AUTO_CLEAN)
|
if(arg_AUTO_CLEAN)
|
||||||
vcpkg_clean_executables_in_bin(FILE_NAMES ${_vct_TOOL_NAMES})
|
vcpkg_clean_executables_in_bin(FILE_NAMES ${arg_TOOL_NAMES})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
vcpkg_copy_tool_dependencies("${_vct_DESTINATION}")
|
vcpkg_copy_tool_dependencies("${arg_DESTINATION}")
|
||||||
endfunction()
|
endfunction()
|
||||||
|
@ -1,68 +0,0 @@
|
|||||||
#[===[.md:
|
|
||||||
# vcpkg_internal_get_cmake_vars
|
|
||||||
|
|
||||||
**Only for internal use in vcpkg helpers. Behavior and arguments will change without notice.**
|
|
||||||
Runs a cmake configure with a dummy project to extract certain cmake variables
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
```cmake
|
|
||||||
vcpkg_internal_get_cmake_vars(
|
|
||||||
[OUTPUT_FILE <output_file_with_vars>]
|
|
||||||
[OPTIONS <-DUSE_THIS_IN_ALL_BUILDS=1>...]
|
|
||||||
)
|
|
||||||
```
|
|
||||||
|
|
||||||
## Parameters
|
|
||||||
### OPTIONS
|
|
||||||
Additional options to pass to the test configure call
|
|
||||||
|
|
||||||
### OUTPUT_FILE
|
|
||||||
Variable to return the path to the generated cmake file with the detected `CMAKE_` variables set as `VCKPG_DETECTED_`
|
|
||||||
|
|
||||||
## Notes
|
|
||||||
If possible avoid usage in portfiles.
|
|
||||||
|
|
||||||
## Examples
|
|
||||||
|
|
||||||
* [vcpkg_configure_make](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_configure_make.cmake)
|
|
||||||
#]===]
|
|
||||||
|
|
||||||
function(vcpkg_internal_get_cmake_vars)
|
|
||||||
cmake_parse_arguments(PARSE_ARGV 0 _gcv "" "OUTPUT_FILE" "OPTIONS")
|
|
||||||
|
|
||||||
if(_gcv_UNPARSED_ARGUMENTS)
|
|
||||||
message(FATAL_ERROR "${CMAKE_CURRENT_FUNCTION} was passed unparsed arguments: '${_gcv_UNPARSED_ARGUMENTS}'")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(NOT _gcv_OUTPUT_FILE)
|
|
||||||
message(FATAL_ERROR "${CMAKE_CURRENT_FUNCTION} requires parameter OUTPUT_FILE!")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(${_gcv_OUTPUT_FILE})
|
|
||||||
debug_message("OUTPUT_FILE ${${_gcv_OUTPUT_FILE}}")
|
|
||||||
else()
|
|
||||||
set(DEFAULT_OUT "${CURRENT_BUILDTREES_DIR}/cmake-vars-${TARGET_TRIPLET}.cmake.log") # So that the file gets included in CI artifacts.
|
|
||||||
set(${_gcv_OUTPUT_FILE} "${DEFAULT_OUT}" PARENT_SCOPE)
|
|
||||||
set(${_gcv_OUTPUT_FILE} "${DEFAULT_OUT}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
vcpkg_configure_cmake(
|
|
||||||
SOURCE_PATH "${SCRIPTS}/get_cmake_vars"
|
|
||||||
OPTIONS ${_gcv_OPTIONS} "-DVCPKG_BUILD_TYPE=${VCPKG_BUILD_TYPE}"
|
|
||||||
OPTIONS_DEBUG "-DVCPKG_OUTPUT_FILE:PATH=${CURRENT_BUILDTREES_DIR}/cmake-vars-${TARGET_TRIPLET}-dbg.cmake.log"
|
|
||||||
OPTIONS_RELEASE "-DVCPKG_OUTPUT_FILE:PATH=${CURRENT_BUILDTREES_DIR}/cmake-vars-${TARGET_TRIPLET}-rel.cmake.log"
|
|
||||||
PREFER_NINJA
|
|
||||||
LOGNAME get-cmake-vars-${TARGET_TRIPLET}
|
|
||||||
Z_VCPKG_IGNORE_UNUSED_VARIABLES
|
|
||||||
)
|
|
||||||
|
|
||||||
set(_include_string)
|
|
||||||
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
|
|
||||||
string(APPEND _include_string "include(\"${CURRENT_BUILDTREES_DIR}/cmake-vars-${TARGET_TRIPLET}-rel.cmake.log\")\n")
|
|
||||||
endif()
|
|
||||||
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
|
||||||
string(APPEND _include_string "include(\"${CURRENT_BUILDTREES_DIR}/cmake-vars-${TARGET_TRIPLET}-dbg.cmake.log\")\n")
|
|
||||||
endif()
|
|
||||||
file(WRITE "${${_gcv_OUTPUT_FILE}}" "${_include_string}")
|
|
||||||
|
|
||||||
endfunction()
|
|
65
scripts/cmake/z_vcpkg_get_cmake_vars.cmake
Normal file
65
scripts/cmake/z_vcpkg_get_cmake_vars.cmake
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
#[===[.md:
|
||||||
|
# z_vcpkg_get_cmake_vars
|
||||||
|
|
||||||
|
**Only for internal use in vcpkg helpers. Behavior and arguments will change without notice.**
|
||||||
|
Runs a cmake configure with a dummy project to extract certain cmake variables
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
```cmake
|
||||||
|
z_vcpkg_get_cmake_vars(<out-var>)
|
||||||
|
```
|
||||||
|
|
||||||
|
`z_vcpkg_get_cmake_vars(cmake_vars_file)` sets `<out-var>` to
|
||||||
|
a path to a generated CMake file, with the detected `CMAKE_*` variables
|
||||||
|
re-exported as `VCPKG_DETECTED_*`.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
Avoid usage in portfiles.
|
||||||
|
|
||||||
|
All calls to `z_vcpkg_get_cmake_vars` will result in the same output file;
|
||||||
|
the output file is not generated multiple times.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
* [vcpkg_configure_make](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_configure_make.cmake)
|
||||||
|
|
||||||
|
### Basic Usage
|
||||||
|
|
||||||
|
```cmake
|
||||||
|
z_vcpkg_get_cmake_vars(cmake_vars_file)
|
||||||
|
include("${cmake_vars_file}")
|
||||||
|
message(STATUS "detected CXX flags: ${VCPKG_DETECTED_CXX_FLAGS}")
|
||||||
|
```
|
||||||
|
#]===]
|
||||||
|
|
||||||
|
function(z_vcpkg_get_cmake_vars out_file)
|
||||||
|
cmake_parse_arguments(PARSE_ARGV 1 arg "" "" "")
|
||||||
|
|
||||||
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
||||||
|
message(FATAL_ERROR "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT DEFINED CACHE{Z_VCPKG_GET_CMAKE_VARS_FILE})
|
||||||
|
set(Z_VCPKG_GET_CMAKE_VARS_FILE "${CURRENT_BUILDTREES_DIR}/cmake-vars-${TARGET_TRIPLET}.cmake.log"
|
||||||
|
CACHE PATH "The file to include to access the CMake variables from a generated project.")
|
||||||
|
vcpkg_configure_cmake(
|
||||||
|
SOURCE_PATH "${SCRIPTS}/get_cmake_vars"
|
||||||
|
OPTIONS_DEBUG "-DVCPKG_OUTPUT_FILE:PATH=${CURRENT_BUILDTREES_DIR}/cmake-vars-${TARGET_TRIPLET}-dbg.cmake.log"
|
||||||
|
OPTIONS_RELEASE "-DVCPKG_OUTPUT_FILE:PATH=${CURRENT_BUILDTREES_DIR}/cmake-vars-${TARGET_TRIPLET}-rel.cmake.log"
|
||||||
|
PREFER_NINJA
|
||||||
|
LOGNAME get-cmake-vars-${TARGET_TRIPLET}
|
||||||
|
Z_GET_CMAKE_VARS_USAGE # ignore vcpkg_cmake_configure, be quiet, don't set variables...
|
||||||
|
)
|
||||||
|
|
||||||
|
set(include_string "")
|
||||||
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
|
||||||
|
string(APPEND include_string "include(\"\${CMAKE_CURRENT_LIST_DIR}/cmake-vars-${TARGET_TRIPLET}-rel.cmake.log\")\n")
|
||||||
|
endif()
|
||||||
|
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug")
|
||||||
|
string(APPEND include_string "include(\"\${CMAKE_CURRENT_LIST_DIR}/cmake-vars-${TARGET_TRIPLET}-dbg.cmake.log\")\n")
|
||||||
|
endif()
|
||||||
|
file(WRITE "${Z_VCPKG_GET_CMAKE_VARS_FILE}" "${include_string}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set("${out_file}" "${Z_VCPKG_GET_CMAKE_VARS_FILE}" PARENT_SCOPE)
|
||||||
|
endfunction()
|
@ -129,13 +129,13 @@ if(CMD MATCHES "^BUILD$")
|
|||||||
include("${SCRIPTS}/cmake/vcpkg_install_msbuild.cmake")
|
include("${SCRIPTS}/cmake/vcpkg_install_msbuild.cmake")
|
||||||
include("${SCRIPTS}/cmake/vcpkg_install_nmake.cmake")
|
include("${SCRIPTS}/cmake/vcpkg_install_nmake.cmake")
|
||||||
include("${SCRIPTS}/cmake/vcpkg_install_qmake.cmake")
|
include("${SCRIPTS}/cmake/vcpkg_install_qmake.cmake")
|
||||||
include("${SCRIPTS}/cmake/vcpkg_internal_get_cmake_vars.cmake")
|
|
||||||
include("${SCRIPTS}/cmake/vcpkg_list.cmake")
|
include("${SCRIPTS}/cmake/vcpkg_list.cmake")
|
||||||
include("${SCRIPTS}/cmake/vcpkg_replace_string.cmake")
|
include("${SCRIPTS}/cmake/vcpkg_replace_string.cmake")
|
||||||
include("${SCRIPTS}/cmake/vcpkg_test_cmake.cmake")
|
include("${SCRIPTS}/cmake/vcpkg_test_cmake.cmake")
|
||||||
|
|
||||||
include("${SCRIPTS}/cmake/z_vcpkg_apply_patches.cmake")
|
include("${SCRIPTS}/cmake/z_vcpkg_apply_patches.cmake")
|
||||||
include("${SCRIPTS}/cmake/z_vcpkg_forward_output_variable.cmake")
|
include("${SCRIPTS}/cmake/z_vcpkg_forward_output_variable.cmake")
|
||||||
|
include("${SCRIPTS}/cmake/z_vcpkg_get_cmake_vars.cmake")
|
||||||
include("${SCRIPTS}/cmake/z_vcpkg_prettify_command_line.cmake")
|
include("${SCRIPTS}/cmake/z_vcpkg_prettify_command_line.cmake")
|
||||||
|
|
||||||
include("${CURRENT_PORT_DIR}/portfile.cmake")
|
include("${CURRENT_PORT_DIR}/portfile.cmake")
|
||||||
|
@ -1998,7 +1998,7 @@
|
|||||||
},
|
},
|
||||||
"ffmpeg": {
|
"ffmpeg": {
|
||||||
"baseline": "4.4",
|
"baseline": "4.4",
|
||||||
"port-version": 11
|
"port-version": 12
|
||||||
},
|
},
|
||||||
"ffnvcodec": {
|
"ffnvcodec": {
|
||||||
"baseline": "10.0.26.0",
|
"baseline": "10.0.26.0",
|
||||||
@ -6569,8 +6569,8 @@
|
|||||||
"port-version": 0
|
"port-version": 0
|
||||||
},
|
},
|
||||||
"vcpkg-cmake": {
|
"vcpkg-cmake": {
|
||||||
"baseline": "2021-06-25",
|
"baseline": "2021-07-26",
|
||||||
"port-version": 5
|
"port-version": 0
|
||||||
},
|
},
|
||||||
"vcpkg-cmake-config": {
|
"vcpkg-cmake-config": {
|
||||||
"baseline": "2021-05-22",
|
"baseline": "2021-05-22",
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "4d910207840ec65730eb972e472dab548fb8b5d2",
|
||||||
|
"version": "4.4",
|
||||||
|
"port-version": 12
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "6e44538ad578a511886a010a5485fbe9ab514bf1",
|
"git-tree": "6e44538ad578a511886a010a5485fbe9ab514bf1",
|
||||||
"version": "4.4",
|
"version": "4.4",
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "ae2178d81ee39baf4c7e9fd6ed3f011b01a93635",
|
||||||
|
"version-date": "2021-07-26",
|
||||||
|
"port-version": 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "07c3e68ce9ae8f30bcc0b21def7a528dbb8ecb07",
|
"git-tree": "07c3e68ce9ae8f30bcc0b21def7a528dbb8ecb07",
|
||||||
"version-date": "2021-06-25",
|
"version-date": "2021-06-25",
|
||||||
|
Loading…
Reference in New Issue
Block a user