summaryrefslogtreecommitdiffstats
path: root/Help
diff options
context:
space:
mode:
authorhalx99 <halx99@live.com>2024-05-01 16:02:06 (GMT)
committerhalx99 <halx99@live.com>2024-05-01 16:30:00 (GMT)
commit56a96d1f1f1f63d03a693e6c2c98b208cfaa3f01 (patch)
treeacce35a5d400930b35d2377241ab7b4a8d83b1e7 /Help
parent01e138a7b741414d233d75c2bf768d83e4b69cb2 (diff)
downloadCMake-56a96d1f1f1f63d03a693e6c2c98b208cfaa3f01.zip
CMake-56a96d1f1f1f63d03a693e6c2c98b208cfaa3f01.tar.gz
CMake-56a96d1f1f1f63d03a693e6c2c98b208cfaa3f01.tar.bz2
VS: Add option to import .props in .vcxproj.filters files
Adds new target property VS_FILTER_PROPS Fixes: #25948
Diffstat (limited to 'Help')
-rw-r--r--Help/manual/cmake-properties.7.rst1
-rw-r--r--Help/prop_tgt/VS_FILTER_PROPS.rst10
-rw-r--r--Help/release/dev/vs-filter-props.rst6
3 files changed, 17 insertions, 0 deletions
diff --git a/Help/manual/cmake-properties.7.rst b/Help/manual/cmake-properties.7.rst
index 6ccc23e..7e640df 100644
--- a/Help/manual/cmake-properties.7.rst
+++ b/Help/manual/cmake-properties.7.rst
@@ -448,6 +448,7 @@ Properties on Targets
/prop_tgt/VS_SOURCE_SETTINGS_tool
/prop_tgt/VS_USE_DEBUG_LIBRARIES
/prop_tgt/VS_USER_PROPS
+ /prop_tgt/VS_FILTER_PROPS
/prop_tgt/VS_WINDOWS_TARGET_PLATFORM_MIN_VERSION
/prop_tgt/VS_WINRT_COMPONENT
/prop_tgt/VS_WINRT_REFERENCES
diff --git a/Help/prop_tgt/VS_FILTER_PROPS.rst b/Help/prop_tgt/VS_FILTER_PROPS.rst
new file mode 100644
index 0000000..3de0a16
--- /dev/null
+++ b/Help/prop_tgt/VS_FILTER_PROPS.rst
@@ -0,0 +1,10 @@
+VS_FILTER_PROPS
+---------------
+
+.. versionadded:: 3.30
+
+Sets the filter props file to be included in the visual studio
+C++ project filter file.
+
+The ``*.filter.props`` files can be used for Visual Studio wide
+configuration which is independent from cmake.
diff --git a/Help/release/dev/vs-filter-props.rst b/Help/release/dev/vs-filter-props.rst
new file mode 100644
index 0000000..5a09511
--- /dev/null
+++ b/Help/release/dev/vs-filter-props.rst
@@ -0,0 +1,6 @@
+vs-filter-props
+---------------
+
+* A :prop_tgt:`VS_FILTER_PROPS` target property was added to tell
+ :ref:`Visual Studio Generators` for VS 2010 and above to use a
+ custom MSBuild filter ``.props`` file.