Skip to content

Commit c7473c5

Browse files
committed
vcpkg: debug, print all vars
1 parent cf4d586 commit c7473c5

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

build/cmake/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ myci_declare_library(${name}
2525
../../src/${name}
2626
)
2727

28+
get_cmake_property(_variableNames VARIABLES)
29+
list (SORT _variableNames)
30+
foreach (_variableName ${_variableNames})
31+
message(STATUS "${_variableName}=${${_variableName}}")
32+
endforeach()
33+
2834
# if the library is compiled by vcpkg during the library package installation,
2935
# then we don't need to build unit tests
3036
if(NOT DEFINED VCPKG_TOOLCHAIN_FILE)

0 commit comments

Comments
 (0)