mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Print CMake entities' properties in human-readable form for debugging. Issue: #27513
11 lines
216 B
CMake
11 lines
216 B
CMake
enable_language(C)
|
|
add_library(mylib STATIC nothing.c)
|
|
|
|
# Regex filters require ALL; combining with NAMED is an error.
|
|
cmake_language(
|
|
PRINT_PROPERTIES
|
|
TARGETS mylib
|
|
NAMED MY_PROP
|
|
PROPERTY_NAME_REGEX "MY_"
|
|
)
|