Explain in more details how to use wxWidgets.props

Also describe a manual change which needs to be done at the project
level when creating a new empty project in MSVS.
This commit is contained in:
Vadim Zeitlin 2020-05-25 00:58:29 +02:00
parent e48d740ed7
commit 56be52b841

View File

@ -529,8 +529,15 @@ Building Applications Using wxWidgets {#msw_build_apps}
===================================== =====================================
If you use MSVS 2010 or later IDE for building your project, simply add If you use MSVS 2010 or later IDE for building your project, simply add
`wxwidgets.props` property sheet to (all) your project(s) using wxWidgets. `wxwidgets.props` property sheet to (all) your project(s) using wxWidgets
You don't need to do anything else. by using "View|Property Manager" menu item to open the property manager
window and then selecting "Add Existing Property Sheet..." from the context
menu in this window.
If you've created a new empty project (i.e. chose "Empty Project" in the
"Create a new project" window shown by MSVS rather than "Windows Desktop"),
you need to change "Linker|System|SubSystem" in the project properties to
"Windows", from the default "Console". You don't need to do anything else.
If you want to use CMake for building your project, please see If you want to use CMake for building your project, please see
@ref overview_cmake. @ref overview_cmake.