diff --git a/docs/changes.txt b/docs/changes.txt index 99f65b57d3..b414530c9c 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -168,6 +168,7 @@ wxMSW: - Improve wxNotebook themed background drawing (Arrigo Marchiori). - Send wxEVT_WEBVIEW_NAVIGATING when redirecting (Josue Andrade Gomes). - Fix build with MSVS 2005 broken in 3.1.1. +- Add wxwidgets.props property sheet file for MSVS users. wxOSX: diff --git a/docs/msw/install.md b/docs/msw/install.md index 83f9829d6a..d06c5c10e2 100644 --- a/docs/msw/install.md +++ b/docs/msw/install.md @@ -505,6 +505,10 @@ The full list of the build settings follows: Building Applications Using wxWidgets {#msw_build_apps} ===================================== +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. +You don't need to do anything else. + If you want to use CMake for building your project, please see @ref overview_cmake. diff --git a/wxwidgets.props b/wxwidgets.props new file mode 100644 index 0000000000..074d6b8a30 --- /dev/null +++ b/wxwidgets.props @@ -0,0 +1,30 @@ + + + + + + + + + WXUSINGDLL + + + + __WXMSW__;$(wxUsingDllDefine);%(PreprocessorDefinitions) + $(MSBuildThisFileDirectory)include\msvc;$(MSBuildThisFileDirectory)include;%(AdditionalIncludeDirectories) + + + __WXMSW__;$(wxUsingDllDefine);%(PreprocessorDefinitions) + $(MSBuildThisFileDirectory)lib\$(wxOutDirName)\$(wxToolkitPrefix)$(wxSuffix);$(MSBuildThisFileDirectory)include;%(AdditionalIncludeDirectories) + + + $(MSBuildThisFileDirectory)lib\$(wxOutDirName);%(AdditionalLibraryDirectories) + + +