diff options
| author | Stefan Boberg <[email protected]> | 2021-09-03 15:48:45 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-03 15:48:45 +0200 |
| commit | 65ae7a6fc5235bcdb507cb8c49427ba295d8f010 (patch) | |
| tree | 22c7b08fa8a86738c127e614cccf23363bf27334 /zenserver | |
| parent | Merge branch 'main' of https://github.com/EpicGames/zen (diff) | |
| download | zen-65ae7a6fc5235bcdb507cb8c49427ba295d8f010.tar.xz zen-65ae7a6fc5235bcdb507cb8c49427ba295d8f010.zip | |
Cleaned up project configuration
zencore, zenutil and zenstore now declare their public include directories which ends up getting added to any dependent projects
Diffstat (limited to 'zenserver')
| -rw-r--r-- | zenserver/zenserver.vcxproj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zenserver/zenserver.vcxproj b/zenserver/zenserver.vcxproj index 9b2fc891e..a58b57090 100644 --- a/zenserver/zenserver.vcxproj +++ b/zenserver/zenserver.vcxproj @@ -49,11 +49,11 @@ <PropertyGroup Label="UserMacros" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <LinkIncremental>false</LinkIncremental> - <IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath);..\3rdparty\TraceLog\Public</IncludePath> + <IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath)</IncludePath> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <LinkIncremental>true</LinkIncremental> - <IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath);..\3rdparty\TraceLog\Public</IncludePath> + <IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath)</IncludePath> </PropertyGroup> <PropertyGroup Label="Vcpkg" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <VcpkgEnableManifest>true</VcpkgEnableManifest> @@ -74,8 +74,8 @@ <SDLCheck>true</SDLCheck> <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ConformanceMode>true</ConformanceMode> - <AdditionalIncludeDirectories>..\zencore\include;..\zenstore\include;..\zenutil\include;.</AdditionalIncludeDirectories> <LanguageStandard>stdcpplatest</LanguageStandard> + <AdditionalIncludeDirectories>.</AdditionalIncludeDirectories> </ClCompile> <Link> <SubSystem>Console</SubSystem> @@ -92,8 +92,8 @@ <SDLCheck>true</SDLCheck> <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ConformanceMode>true</ConformanceMode> - <AdditionalIncludeDirectories>..\zencore\include;..\zenstore\include;..\zenutil\include;.</AdditionalIncludeDirectories> <LanguageStandard>stdcpplatest</LanguageStandard> + <AdditionalIncludeDirectories>.</AdditionalIncludeDirectories> </ClCompile> <Link> <SubSystem>Console</SubSystem> |