VS_GLOBAL_SECTION_PRE_section.rst 776 B

12345678910111213141516171819202122
  1. VS_GLOBAL_SECTION_PRE_<section>
  2. -------------------------------
  3. Specify a preSolution global section in Visual Studio.
  4. Setting a property like this generates an entry of the following form
  5. in the solution file:
  6. ::
  7. GlobalSection(<section>) = preSolution
  8. <contents based on property value>
  9. EndGlobalSection
  10. The property must be set to a semicolon-separated list of key=value
  11. pairs. Each such pair will be transformed into an entry in the
  12. solution global section. Whitespace around key and value is ignored.
  13. List elements which do not contain an equal sign are skipped.
  14. This property only works for Visual Studio 7 and above; it is ignored
  15. on other generators. The property only applies when set on a
  16. directory whose CMakeLists.txt contains a project() command.