mirror of
				https://github.com/gnif/LookingGlass.git
				synced 2025-10-31 04:31:57 +00:00 
			
		
		
		
	 6a4edfc6b6
			
		
	
	6a4edfc6b6
	
	
		
			
	
		
	
	
		
			Some checks are pending
		
		
	
	build / client (Debug, map[cc:clang cxx:clang++], libdecor) (push) Waiting to run
				
			build / client (Debug, map[cc:clang cxx:clang++], xdg-shell) (push) Waiting to run
				
			build / client (Debug, map[cc:gcc cxx:g++], libdecor) (push) Waiting to run
				
			build / client (Debug, map[cc:gcc cxx:g++], xdg-shell) (push) Waiting to run
				
			build / client (Release, map[cc:clang cxx:clang++], libdecor) (push) Waiting to run
				
			build / client (Release, map[cc:clang cxx:clang++], xdg-shell) (push) Waiting to run
				
			build / client (Release, map[cc:gcc cxx:g++], libdecor) (push) Waiting to run
				
			build / client (Release, map[cc:gcc cxx:g++], xdg-shell) (push) Waiting to run
				
			build / module (push) Waiting to run
				
			build / host-linux (push) Waiting to run
				
			build / host-windows-cross (push) Waiting to run
				
			build / host-windows-native (push) Waiting to run
				
			build / obs (clang) (push) Waiting to run
				
			build / obs (gcc) (push) Waiting to run
				
			build / docs (push) Waiting to run
				
			As the IDD itself runs in a WUMDF sandbox, it doesn't have enough access to perform interactive operations such as moving the cursor. This helper service communicates with the IDD over a named pipe, so that we can perform these things, as well as in the future provide a configuration GUI.
		
			
				
	
	
		
			188 lines
		
	
	
		
			9.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			188 lines
		
	
	
		
			9.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | |
|   <Import Project="..\packages\MSBuilder.Git.0.3.0\build\MSBuilder.Git.props" Condition="Exists('..\packages\MSBuilder.Git.0.3.0\build\MSBuilder.Git.props')" />
 | |
|   <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>{0045d7ad-3f26-4b87-81cb-78d18839596d}</ProjectGuid>
 | |
|     <RootNamespace>LGIddHelper</RootNamespace>
 | |
|     <WindowsTargetPlatformVersion>10.0.22621.0</WindowsTargetPlatformVersion>
 | |
|   </PropertyGroup>
 | |
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | |
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | |
|     <ConfigurationType>Application</ConfigurationType>
 | |
|     <UseDebugLibraries>true</UseDebugLibraries>
 | |
|     <PlatformToolset>v143</PlatformToolset>
 | |
|     <CharacterSet>Unicode</CharacterSet>
 | |
|   </PropertyGroup>
 | |
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | |
|     <ConfigurationType>Application</ConfigurationType>
 | |
|     <UseDebugLibraries>false</UseDebugLibraries>
 | |
|     <PlatformToolset>v143</PlatformToolset>
 | |
|     <WholeProgramOptimization>true</WholeProgramOptimization>
 | |
|     <CharacterSet>Unicode</CharacterSet>
 | |
|   </PropertyGroup>
 | |
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | |
|     <ConfigurationType>Application</ConfigurationType>
 | |
|     <UseDebugLibraries>true</UseDebugLibraries>
 | |
|     <PlatformToolset>v143</PlatformToolset>
 | |
|     <CharacterSet>NotSet</CharacterSet>
 | |
|   </PropertyGroup>
 | |
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | |
|     <ConfigurationType>Application</ConfigurationType>
 | |
|     <UseDebugLibraries>false</UseDebugLibraries>
 | |
|     <PlatformToolset>v143</PlatformToolset>
 | |
|     <WholeProgramOptimization>true</WholeProgramOptimization>
 | |
|     <CharacterSet>NotSet</CharacterSet>
 | |
|   </PropertyGroup>
 | |
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | |
|   <ImportGroup Label="ExtensionSettings">
 | |
|   </ImportGroup>
 | |
|   <ImportGroup Label="Shared">
 | |
|   </ImportGroup>
 | |
|   <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" />
 | |
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | |
|     <ClCompile>
 | |
|       <WarningLevel>Level3</WarningLevel>
 | |
|       <SDLCheck>true</SDLCheck>
 | |
|       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | |
|       <ConformanceMode>true</ConformanceMode>
 | |
|       <AdditionalIncludeDirectories>$(SolutionDir)LGCommon;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
 | |
|     </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>
 | |
|       <AdditionalIncludeDirectories>$(SolutionDir)LGCommon;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
 | |
|     </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>
 | |
|       <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | |
|       <ConformanceMode>true</ConformanceMode>
 | |
|       <LanguageStandard>Default</LanguageStandard>
 | |
|       <LanguageStandard_C>Default</LanguageStandard_C>
 | |
|       <AdditionalIncludeDirectories>$(SolutionDir)LGCommon;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
 | |
|       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | |
|     </ClCompile>
 | |
|     <Link>
 | |
|       <SubSystem>Windows</SubSystem>
 | |
|       <GenerateDebugInformation>true</GenerateDebugInformation>
 | |
|       <AdditionalDependencies>%(AdditionalDependencies);Rpcrt4.lib;Userenv.lib;setupapi.lib</AdditionalDependencies>
 | |
|     </Link>
 | |
|     <PostBuildEvent>
 | |
|       <Command>if not exist "$(SolutionDir)$(Platform)\$(Configuration)\LGIdd" mkdir "$(SolutionDir)$(Platform)\$(Configuration)\LGIdd"
 | |
| copy /Y "$(TargetPath)" "$(SolutionDir)$(Platform)\$(Configuration)\LGIdd\"</Command>
 | |
|     </PostBuildEvent>
 | |
|   </ItemDefinitionGroup>
 | |
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | |
|     <ClCompile>
 | |
|       <WarningLevel>Level3</WarningLevel>
 | |
|       <FunctionLevelLinking>true</FunctionLevelLinking>
 | |
|       <IntrinsicFunctions>true</IntrinsicFunctions>
 | |
|       <SDLCheck>true</SDLCheck>
 | |
|       <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | |
|       <ConformanceMode>true</ConformanceMode>
 | |
|       <LanguageStandard>Default</LanguageStandard>
 | |
|       <LanguageStandard_C>Default</LanguageStandard_C>
 | |
|       <AdditionalIncludeDirectories>$(SolutionDir)LGCommon;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
 | |
|       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | |
|     </ClCompile>
 | |
|     <Link>
 | |
|       <SubSystem>Windows</SubSystem>
 | |
|       <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | |
|       <OptimizeReferences>true</OptimizeReferences>
 | |
|       <GenerateDebugInformation>true</GenerateDebugInformation>
 | |
|       <AdditionalDependencies>%(AdditionalDependencies);Rpcrt4.lib;Userenv.lib;setupapi.lib</AdditionalDependencies>
 | |
|     </Link>
 | |
|     <PostBuildEvent>
 | |
|       <Command>if not exist "$(SolutionDir)$(Platform)\$(Configuration)\LGIdd" mkdir "$(SolutionDir)$(Platform)\$(Configuration)\LGIdd"
 | |
| copy /Y "$(TargetPath)" "$(SolutionDir)$(Platform)\$(Configuration)\LGIdd\"</Command>
 | |
|     </PostBuildEvent>
 | |
|   </ItemDefinitionGroup>
 | |
|   <ItemGroup>
 | |
|     <ClCompile Include="$(SolutionDir)LGCommon\*.cpp" />
 | |
|     <ClCompile Include="CPipeClient.cpp" />
 | |
|     <ClCompile Include="main.cpp" />
 | |
|   </ItemGroup>
 | |
|   <ItemGroup>
 | |
|     <CLInclude Include="$(SolutionDir)LGCommon\*.h" />
 | |
|     <ClInclude Include="CPipeClient.h" />
 | |
|   </ItemGroup>
 | |
|   <ItemGroup>
 | |
|     <None Include="packages.config" />
 | |
|   </ItemGroup>
 | |
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | |
|   <ImportGroup Label="ExtensionTargets" />
 | |
|   <Target Name="GenerateVersionInfo" BeforeTargets="ClCompile">
 | |
|     <Exec Command=""$(Git)" describe --always --abbrev=10 --dirty=+ --tags" ConsoleToMSBuild="true">
 | |
|       <Output TaskParameter="ConsoleOutput" PropertyName="GitVersion" />
 | |
|     </Exec>
 | |
|     <ItemGroup>
 | |
|       <VersionInfoLines Include="#define LG_VERSION_STR "$(GitVersion)"" />
 | |
|       <VersionInfoLines Include="#define LG_CURRENT_YEAR $(CurrentYear)" />
 | |
|     </ItemGroup>
 | |
|     <WriteLinesToFile File="VersionInfo.h" Lines="@(VersionInfoLines)" Overwrite="true" />
 | |
|   </Target>
 | |
|   <Target Name="Build" DependsOnTargets="$(BuildDependsOn)" />
 | |
|   <PropertyGroup>
 | |
|     <CurrentYear>$([System.DateTime]::Now.ToString("yyyy"))</CurrentYear>
 | |
|     <BuildDependsOn>
 | |
|       GenerateVersionInfo;
 | |
|       $(BuildDependsOn);
 | |
|     </BuildDependsOn>
 | |
|   </PropertyGroup>
 | |
|   <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
 | |
|     <PropertyGroup>
 | |
|       <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
 | |
|     </PropertyGroup>
 | |
|     <Error Condition="!Exists('..\packages\MSBuilder.Git.0.3.0\build\MSBuilder.Git.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSBuilder.Git.0.3.0\build\MSBuilder.Git.props'))" />
 | |
|   </Target>
 | |
| </Project> |