Created
January 18, 2026 07:50
-
-
Save proffix4/93e891d285d9b3e642bf3e7189232c71 to your computer and use it in GitHub Desktop.
vs2026_wxwin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <ImportGroup Label="PropertySheets" /> | |
| <PropertyGroup Label="UserMacros"> | |
| <wxwin>D:\wxWorkspace\wxWidgets</wxwin> | |
| </PropertyGroup> | |
| <PropertyGroup> | |
| <_PropertySheetDisplayName>wx_var.props</_PropertySheetDisplayName> | |
| </PropertyGroup> | |
| <ItemDefinitionGroup /> | |
| <ItemGroup /> | |
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- Все конфигурации проекта для всех платформ: --- | |
| C/C++ -> Дополнительные каталоги включаемых файлов : $(wxwin)\include\msvc;$(wxwin)\include | |
| --- Все конфигурации проекта для x64: --- | |
| Компоновщик -> Дополнительные каталоги библиотек : $(wxwin)\lib\vc_x64_lib | |
| --- Все конфигурации проекта win32: --- | |
| Компоновщик -> Дополнительные каталоги библиотек : $(wxwin)\lib\vc_lib | |
| -------------------------------------------------------- | |
| --- Системные переменные Windows: --- | |
| wxwin: D:\Development\RedPanda-CPP\wxWidgets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <ImportGroup Label="PropertySheets" /> | |
| <PropertyGroup Label="UserMacros"> | |
| <wxwin>D:\wxWorkspace\wxWidgets</wxwin> | |
| </PropertyGroup> | |
| <PropertyGroup> | |
| <_PropertySheetDisplayName>wx_win.props</_PropertySheetDisplayName> | |
| </PropertyGroup> | |
| <ItemDefinitionGroup> | |
| <!-- Для include-директорий (заголовочные файлы) --> | |
| <ClCompile> | |
| <AdditionalIncludeDirectories>$(wxwin)\include\msvc;$(wxwin)\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
| </ClCompile> | |
| <!-- Для библиотек (linking) --> | |
| <Link> | |
| <!-- Win32 --> | |
| <AdditionalLibraryDirectories Condition="'$(Platform)'=='Win32'">$(wxwin)\lib\vc_lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | |
| <!-- x64 --> | |
| <AdditionalLibraryDirectories Condition="'$(Platform)'=='x64'">$(wxwin)\lib\vc_x64_lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | |
| </Link> | |
| </ItemDefinitionGroup> | |
| <ItemGroup /> | |
| </Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment