diff options
| author | navewindre <nw@moneybot.cc> | 2024-07-17 08:36:51 +0200 |
|---|---|---|
| committer | navewindre <nw@moneybot.cc> | 2024-07-17 08:36:51 +0200 |
| commit | 819cf3e4e8abb5ad41d8830155fc20bd833b21e8 (patch) | |
| tree | 463951e47fc2937979542c8c46d14b9e0da827ce /dwm/dwm.vcxproj | |
| parent | 4c8b52fc94c04c4b3d338c2501971ae348f5b3e5 (diff) | |
render wip
Diffstat (limited to 'dwm/dwm.vcxproj')
| -rw-r--r-- | dwm/dwm.vcxproj | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/dwm/dwm.vcxproj b/dwm/dwm.vcxproj index bab2871..f77abef 100644 --- a/dwm/dwm.vcxproj +++ b/dwm/dwm.vcxproj @@ -43,14 +43,14 @@ <ConfigurationType>DynamicLibrary</ConfigurationType> <UseDebugLibraries>true</UseDebugLibraries> <PlatformToolset>v142</PlatformToolset> - <CharacterSet>Unicode</CharacterSet> + <CharacterSet>MultiByte</CharacterSet> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <ConfigurationType>DynamicLibrary</ConfigurationType> <UseDebugLibraries>false</UseDebugLibraries> <PlatformToolset>v142</PlatformToolset> <WholeProgramOptimization>true</WholeProgramOptimization> - <CharacterSet>Unicode</CharacterSet> + <CharacterSet>MultiByte</CharacterSet> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> @@ -81,12 +81,16 @@ <OutDir>$(SolutionDir)\bin\</OutDir> <IntDir>..\intermediate\X64\$(Configuration)\</IntDir> <TargetName>dwmhook</TargetName> + <IncludePath>C:\Users\aurelia\Documents\heavenhack-cs2\freetype;$(IncludePath)</IncludePath> + <LibraryPath>C:\Users\aurelia\Documents\heavenhack-cs2\freetype;$(LibraryPath)</LibraryPath> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <LinkIncremental>false</LinkIncremental> <OutDir>$(SolutionDir)\bin\</OutDir> <IntDir>..\intermediate\X64\$(Configuration)\</IntDir> <TargetName>dwmhook</TargetName> + <IncludePath>C:\Users\aurelia\Documents\heavenhack-cs2\freetype;$(IncludePath)</IncludePath> + <LibraryPath>C:\Users\aurelia\Documents\heavenhack-cs2\freetype;$(LibraryPath)</LibraryPath> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> @@ -120,7 +124,7 @@ <ClCompile> <WarningLevel>Level3</WarningLevel> <SDLCheck>true</SDLCheck> - <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions);X64</PreprocessorDefinitions> + <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions);X64;_CRT_SECURE_NO_WARNINGS</PreprocessorDefinitions> <ConformanceMode>true</ConformanceMode> <LanguageStandard>stdcpp17</LanguageStandard> </ClCompile> @@ -135,7 +139,7 @@ <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> <SDLCheck>true</SDLCheck> - <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions);X64</PreprocessorDefinitions> + <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions);X64;_CRT_SECURE_NO_WARNINGS</PreprocessorDefinitions> <ConformanceMode>true</ConformanceMode> <LanguageStandard>stdcpp17</LanguageStandard> </ClCompile> @@ -147,9 +151,14 @@ </Link> </ItemDefinitionGroup> <ItemGroup> + <ClCompile Include="dxhk.cpp" /> + <ClCompile Include="grender.cpp" /> <ClCompile Include="source.cpp" /> </ItemGroup> <ItemGroup> + <ClInclude Include="dxhk.h" /> + <ClInclude Include="grender.h" /> + <ClInclude Include="inter.h" /> <ClInclude Include="typedef.h" /> <ClInclude Include="util.h" /> </ItemGroup> |
