2021-10-14 18:54:29 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
<ProjectConfiguration Include="Debug|Win32">
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
</ProjectConfiguration>
|
|
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
</ProjectConfiguration>
|
|
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
</ProjectConfiguration>
|
|
|
|
<ProjectConfiguration Include="Release|x64">
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
</ProjectConfiguration>
|
|
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
<VCProjectVersion>16.0</VCProjectVersion>
|
|
|
|
<Keyword>Win32Proj</Keyword>
|
|
|
|
<ProjectGuid>{076e263e-0687-4435-836e-8f4ef6668843}</ProjectGuid>
|
|
|
|
<RootNamespace>GlosSITarget</RootNamespace>
|
|
|
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
2022-01-06 23:38:21 +00:00
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
2021-10-14 18:54:29 +00:00
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
2022-01-06 23:38:21 +00:00
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
2021-10-14 18:54:29 +00:00
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
2022-01-06 23:38:21 +00:00
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
2021-10-14 18:54:29 +00:00
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
|
|
<ConfigurationType>Application</ConfigurationType>
|
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
2022-01-06 23:38:21 +00:00
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
2021-10-14 18:54:29 +00:00
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
2023-01-31 09:08:57 +00:00
|
|
|
<SpectreMitigation />
|
2021-10-14 18:54:29 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
2022-06-06 17:53:06 +00:00
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
</ImportGroup>
|
|
|
|
<ImportGroup Label="Shared">
|
|
|
|
</ImportGroup>
|
2021-10-14 18:54:29 +00:00
|
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
</ImportGroup>
|
|
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
</ImportGroup>
|
|
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
</ImportGroup>
|
|
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
</ImportGroup>
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
|
<LinkIncremental>true</LinkIncremental>
|
2021-10-15 13:02:36 +00:00
|
|
|
<ExternalIncludePath>..\deps\SFML\include;$(ExternalIncludePath)</ExternalIncludePath>
|
2021-10-14 18:54:29 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
|
<LinkIncremental>false</LinkIncremental>
|
2021-10-15 13:02:36 +00:00
|
|
|
<ExternalIncludePath>..\deps\SFML\include;$(ExternalIncludePath)</ExternalIncludePath>
|
2021-10-14 18:54:29 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
<LinkIncremental>true</LinkIncremental>
|
2024-09-19 18:48:23 +00:00
|
|
|
<ExternalIncludePath>..\deps\SFML\include;..\deps\WinReg;..\deps\spdlog\include;..\deps\ValveFileVDF;..\deps\subhook;..\deps\ViGEmClient\include;..\deps\imgui;..\deps\imgui-sfml;..\deps\json\include;..\deps\traypp\tray\include;..\deps\cpp-httplib;..\CEFInjectLib;$(ExternalIncludePath)</ExternalIncludePath>
|
|
|
|
<LibraryPath>..\deps\SFML\out\Debug\lib\Debug;..\deps\ViGEmClient\lib\debug\x64;..\x64\Debug;$(LibraryPath)</LibraryPath>
|
2021-10-15 13:02:36 +00:00
|
|
|
<CopyLocalProjectReference>false</CopyLocalProjectReference>
|
|
|
|
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
|
2021-10-23 15:01:38 +00:00
|
|
|
<CustomBuildBeforeTargets>ResourceCompile</CustomBuildBeforeTargets>
|
2021-10-14 18:54:29 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
<LinkIncremental>false</LinkIncremental>
|
2024-09-19 18:48:23 +00:00
|
|
|
<ExternalIncludePath>..\deps\SFML\include;..\deps\WinReg;..\deps\spdlog\include;..\deps\ValveFileVDF;..\deps\subhook;..\deps\ViGEmClient\include;..\deps\imgui;..\deps\imgui-sfml;..\deps\json\include;..\deps\traypp\tray\include;..\deps\cpp-httplib;..\CEFInjectLib;$(ExternalIncludePath)</ExternalIncludePath>
|
|
|
|
<LibraryPath>..\deps\SFML\out\Release\lib\RelWithDebInfo;..\deps\ViGEmClient\lib\release\x64;..\x64\Release;$(LibraryPath)</LibraryPath>
|
2021-10-23 15:01:38 +00:00
|
|
|
<CustomBuildBeforeTargets>ResourceCompile</CustomBuildBeforeTargets>
|
2021-10-30 12:54:55 +00:00
|
|
|
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
|
2021-10-14 18:54:29 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
|
<ClCompile>
|
|
|
|
<WarningLevel>Level3</WarningLevel>
|
|
|
|
<SDLCheck>true</SDLCheck>
|
|
|
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
<ConformanceMode>true</ConformanceMode>
|
|
|
|
</ClCompile>
|
|
|
|
<Link>
|
|
|
|
<SubSystem>Console</SubSystem>
|
|
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
|
</Link>
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
|
<ClCompile>
|
|
|
|
<WarningLevel>Level3</WarningLevel>
|
|
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
|
<SDLCheck>true</SDLCheck>
|
|
|
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
<ConformanceMode>true</ConformanceMode>
|
|
|
|
</ClCompile>
|
|
|
|
<Link>
|
|
|
|
<SubSystem>Console</SubSystem>
|
|
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
|
<OptimizeReferences>true</OptimizeReferences>
|
|
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
|
</Link>
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
<ClCompile>
|
|
|
|
<WarningLevel>Level3</WarningLevel>
|
|
|
|
<SDLCheck>true</SDLCheck>
|
2024-09-19 18:48:23 +00:00
|
|
|
<PreprocessorDefinitions>_DEBUG;SPDLOG_WCHAR_TO_UTF8_SUPPORT;SPDLOG_WCHAR_FILENAMES;_SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING;SUBHOOK_STATIC;%(PreprocessorDefinitions);_SILENCE_ALL_MS_EXT_DEPRECATION_WARNINGS</PreprocessorDefinitions>
|
2021-10-14 18:54:29 +00:00
|
|
|
<ConformanceMode>true</ConformanceMode>
|
2021-10-15 13:02:36 +00:00
|
|
|
<LanguageStandard>stdcpp20</LanguageStandard>
|
2023-01-31 09:08:57 +00:00
|
|
|
<EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
|
|
|
|
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
|
|
|
<FloatingPointModel>Fast</FloatingPointModel>
|
2021-10-14 18:54:29 +00:00
|
|
|
</ClCompile>
|
|
|
|
<Link>
|
2021-10-22 13:40:37 +00:00
|
|
|
<SubSystem>Windows</SubSystem>
|
2021-10-14 18:54:29 +00:00
|
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
2024-09-19 18:48:23 +00:00
|
|
|
<AdditionalDependencies>hid.lib;Cfgmgr32.lib;opengl32.lib;CEFInjectLib.lib;sfml-window-d.lib;sfml-system-d.lib;sfml-graphics-d.lib;dwmapi.lib;xinput.lib;setupapi.lib;ViGEmClient.lib;Dbghelp.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
2021-10-14 18:54:29 +00:00
|
|
|
</Link>
|
2021-10-22 20:11:09 +00:00
|
|
|
<Manifest>
|
2021-10-30 14:13:40 +00:00
|
|
|
<EnableDpiAwareness>PerMonitorHighDPIAware</EnableDpiAwareness>
|
2021-10-22 20:11:09 +00:00
|
|
|
</Manifest>
|
2021-10-23 14:58:05 +00:00
|
|
|
<CustomBuildStep>
|
2021-10-28 09:51:25 +00:00
|
|
|
<Command>powershell.exe $(SolutionDir)version_help.ps1</Command>
|
2021-10-23 15:01:38 +00:00
|
|
|
<Outputs>Upading version based on git;%(Outputs)</Outputs>
|
2021-10-23 14:58:05 +00:00
|
|
|
</CustomBuildStep>
|
2021-10-14 18:54:29 +00:00
|
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
<ClCompile>
|
|
|
|
<WarningLevel>Level3</WarningLevel>
|
|
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
|
<SDLCheck>true</SDLCheck>
|
2024-09-19 18:48:23 +00:00
|
|
|
<PreprocessorDefinitions>NDEBUG;SPDLOG_WCHAR_TO_UTF8_SUPPORT;SPDLOG_WCHAR_FILENAMES;_SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING;SUBHOOK_STATIC;%(PreprocessorDefinitions);_SILENCE_ALL_MS_EXT_DEPRECATION_WARNINGS</PreprocessorDefinitions>
|
2021-10-14 18:54:29 +00:00
|
|
|
<ConformanceMode>true</ConformanceMode>
|
2021-10-15 13:02:36 +00:00
|
|
|
<LanguageStandard>stdcpp20</LanguageStandard>
|
2023-01-31 09:08:57 +00:00
|
|
|
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
|
|
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
|
|
|
<FloatingPointModel>Fast</FloatingPointModel>
|
2021-10-14 18:54:29 +00:00
|
|
|
</ClCompile>
|
|
|
|
<Link>
|
2021-10-22 13:40:37 +00:00
|
|
|
<SubSystem>Windows</SubSystem>
|
2021-10-14 18:54:29 +00:00
|
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
|
<OptimizeReferences>true</OptimizeReferences>
|
|
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
2024-09-19 18:48:23 +00:00
|
|
|
<AdditionalDependencies>hid.lib;Cfgmgr32.lib;opengl32.lib;CEFInjectLib.lib;sfml-window.lib;sfml-system.lib;sfml-graphics.lib;dwmapi.lib;XINPUT.lib;setupapi.lib;ViGEmClient.lib;Dbghelp.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
2021-10-14 18:54:29 +00:00
|
|
|
</Link>
|
2021-10-22 20:11:09 +00:00
|
|
|
<Manifest>
|
|
|
|
<EnableDpiAwareness>PerMonitorHighDPIAware</EnableDpiAwareness>
|
|
|
|
</Manifest>
|
2021-10-23 14:58:05 +00:00
|
|
|
<CustomBuildStep>
|
2021-10-28 09:51:25 +00:00
|
|
|
<Command>powershell.exe $(SolutionDir)version_help.ps1</Command>
|
2021-10-23 15:01:38 +00:00
|
|
|
<Outputs>Upading version based on git;%(Outputs)</Outputs>
|
2021-10-23 14:58:05 +00:00
|
|
|
</CustomBuildStep>
|
2021-10-14 18:54:29 +00:00
|
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemGroup>
|
2023-01-29 15:00:06 +00:00
|
|
|
<ClCompile Include="..\common\HidHide.cpp" />
|
|
|
|
<ClCompile Include="..\common\UnhookUtil.cpp" />
|
2021-10-22 10:17:46 +00:00
|
|
|
<ClCompile Include="..\deps\imgui-sfml\imgui-SFML.cpp" />
|
|
|
|
<ClCompile Include="..\deps\imgui\imgui.cpp" />
|
|
|
|
<ClCompile Include="..\deps\imgui\imgui_draw.cpp" />
|
|
|
|
<ClCompile Include="..\deps\imgui\imgui_tables.cpp" />
|
|
|
|
<ClCompile Include="..\deps\imgui\imgui_widgets.cpp" />
|
2021-10-17 19:04:41 +00:00
|
|
|
<ClCompile Include="..\deps\subhook\subhook.c" />
|
2022-03-06 16:41:29 +00:00
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\components\button.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\components\imagebutton.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\components\label.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\components\separator.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\components\submenu.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\components\syncedtoggle.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\components\toggle.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\core\entry.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\core\traybase.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\core\windows\icon.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\core\windows\image.cpp" />
|
|
|
|
<ClCompile Include="..\deps\traypp\tray\src\core\windows\tray.cpp" />
|
2021-10-23 11:33:01 +00:00
|
|
|
<ClCompile Include="AppLauncher.cpp" />
|
2022-10-09 22:28:28 +00:00
|
|
|
<ClCompile Include="HttpServer.cpp" />
|
2021-10-17 21:41:15 +00:00
|
|
|
<ClCompile Include="InputRedirector.cpp" />
|
2021-10-14 18:54:29 +00:00
|
|
|
<ClCompile Include="main.cpp" />
|
2021-10-22 10:17:46 +00:00
|
|
|
<ClCompile Include="Overlay.cpp" />
|
2021-10-21 17:58:58 +00:00
|
|
|
<ClCompile Include="SteamOverlayDetector.cpp" />
|
2021-10-14 18:54:29 +00:00
|
|
|
<ClCompile Include="SteamTarget.cpp" />
|
2021-10-15 13:02:36 +00:00
|
|
|
<ClCompile Include="TargetWindow.cpp" />
|
2021-10-14 18:54:29 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2021-10-22 10:17:46 +00:00
|
|
|
<ClInclude Include="..\deps\imgui-sfml\imgui-SFML.h" />
|
|
|
|
<ClInclude Include="..\deps\imgui\imgui.h" />
|
2021-10-17 19:04:41 +00:00
|
|
|
<ClInclude Include="..\deps\subhook\subhook.h" />
|
2021-10-23 11:33:01 +00:00
|
|
|
<ClInclude Include="AppLauncher.h" />
|
2023-02-27 18:47:34 +00:00
|
|
|
<ClInclude Include="CommonHttpEndpoints.h" />
|
2021-10-29 17:51:59 +00:00
|
|
|
<ClInclude Include="DllInjector.h" />
|
2022-09-25 15:07:24 +00:00
|
|
|
<ClInclude Include="GlosSI_logo.h" />
|
2022-10-09 22:28:28 +00:00
|
|
|
<ClInclude Include="HttpServer.h" />
|
2021-10-22 10:17:46 +00:00
|
|
|
<ClInclude Include="imconfig.h" />
|
2021-10-17 21:41:15 +00:00
|
|
|
<ClInclude Include="InputRedirector.h" />
|
2021-10-22 10:17:46 +00:00
|
|
|
<ClInclude Include="Overlay.h" />
|
2021-10-22 13:40:37 +00:00
|
|
|
<ClInclude Include="OverlayLogSink.h" />
|
2022-01-11 00:20:13 +00:00
|
|
|
<ClInclude Include="ProcessPriority.h" />
|
2021-10-23 14:58:05 +00:00
|
|
|
<ClInclude Include="resource.h" />
|
2021-10-28 13:20:20 +00:00
|
|
|
<ClInclude Include="Roboto.h" />
|
2021-10-21 17:58:58 +00:00
|
|
|
<ClInclude Include="SteamOverlayDetector.h" />
|
2021-10-14 18:54:29 +00:00
|
|
|
<ClInclude Include="SteamTarget.h" />
|
2021-10-17 01:45:21 +00:00
|
|
|
<ClInclude Include="steam_sf_keymap.h" />
|
2021-10-15 13:02:36 +00:00
|
|
|
<ClInclude Include="TargetWindow.h" />
|
2021-10-29 17:51:59 +00:00
|
|
|
<ClInclude Include="UWPOverlayEnabler.h" />
|
2021-10-15 13:02:36 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2021-10-30 12:54:55 +00:00
|
|
|
<None Include="..\deps\SFML\out\Debug\lib\Debug\sfml-graphics-d-2.dll">
|
2021-10-15 13:02:36 +00:00
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
2021-10-30 12:54:55 +00:00
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
2021-10-15 13:02:36 +00:00
|
|
|
</None>
|
2021-10-30 12:54:55 +00:00
|
|
|
<None Include="..\deps\SFML\out\Debug\lib\Debug\sfml-system-d-2.dll">
|
2021-10-15 13:02:36 +00:00
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
2021-10-30 12:54:55 +00:00
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
2021-10-15 13:02:36 +00:00
|
|
|
</None>
|
2021-10-30 12:54:55 +00:00
|
|
|
<None Include="..\deps\SFML\out\Debug\lib\Debug\sfml-window-d-2.dll">
|
2021-10-15 13:02:36 +00:00
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
2021-10-30 12:54:55 +00:00
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
|
|
</None>
|
|
|
|
<None Include="..\deps\SFML\out\Release\lib\RelWithDebInfo\sfml-graphics-2.dll">
|
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
|
|
|
</None>
|
|
|
|
<None Include="..\deps\SFML\out\Release\lib\RelWithDebInfo\sfml-system-2.dll">
|
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
|
|
|
</None>
|
|
|
|
<None Include="..\deps\SFML\out\Release\lib\RelWithDebInfo\sfml-window-2.dll">
|
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
|
|
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
2021-10-15 13:02:36 +00:00
|
|
|
</None>
|
2021-10-15 15:10:57 +00:00
|
|
|
<None Include=".clang-format" />
|
2021-10-14 18:54:29 +00:00
|
|
|
</ItemGroup>
|
2021-10-23 14:58:05 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ResourceCompile Include="Resource.rc" />
|
|
|
|
</ItemGroup>
|
2022-03-06 17:10:56 +00:00
|
|
|
<ItemGroup>
|
2022-09-25 16:36:56 +00:00
|
|
|
<Image Include="..\GlosSI_Icon.ico" />
|
2022-03-06 17:10:56 +00:00
|
|
|
</ItemGroup>
|
2021-10-14 18:54:29 +00:00
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
2022-06-06 17:53:06 +00:00
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
</ImportGroup>
|
2021-10-14 18:54:29 +00:00
|
|
|
</Project>
|