mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-26 08:08:24 -05:00
56a96d1f1f
Adds new target property VS_FILTER_PROPS Fixes: #25948
9 lines
211 B
CMake
9 lines
211 B
CMake
enable_language(CXX)
|
|
add_library(foo foo.cpp)
|
|
|
|
set(props_file "${CMAKE_CURRENT_SOURCE_DIR}/my.props")
|
|
|
|
set_target_properties(foo PROPERTIES
|
|
VS_USER_PROPS "${props_file}"
|
|
VS_FILTER_PROPS "${props_file}")
|