diff options
| author | 2013-09-13 17:46:27 -0400 | |
|---|---|---|
| committer | 2013-09-13 17:46:27 -0400 | |
| commit | 9709dd2def24260ec2ea4fdc16e3a78fa206bbb9 (patch) | |
| tree | 0bd5ba71df0a211cf17a8e46d882094ff704c15e /src/common/scm_rev_gen.vcxproj | |
| parent | renamed AkiruBinDir to EmuBinDir (diff) | |
| download | yuzu-9709dd2def24260ec2ea4fdc16e3a78fa206bbb9.tar.gz yuzu-9709dd2def24260ec2ea4fdc16e3a78fa206bbb9.tar.xz yuzu-9709dd2def24260ec2ea4fdc16e3a78fa206bbb9.zip | |
added scm_rev_gen project to automatically create a header with the git revision on build
Diffstat (limited to 'src/common/scm_rev_gen.vcxproj')
| -rw-r--r-- | src/common/scm_rev_gen.vcxproj | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/src/common/scm_rev_gen.vcxproj b/src/common/scm_rev_gen.vcxproj new file mode 100644 index 000000000..e1b413c56 --- /dev/null +++ b/src/common/scm_rev_gen.vcxproj | |||
| @@ -0,0 +1,79 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ItemGroup Label="ProjectConfigurations"> | ||
| 4 | <ProjectConfiguration Include="Debug|Win32"> | ||
| 5 | <Configuration>Debug</Configuration> | ||
| 6 | <Platform>Win32</Platform> | ||
| 7 | </ProjectConfiguration> | ||
| 8 | <ProjectConfiguration Include="Debug|x64"> | ||
| 9 | <Configuration>Debug</Configuration> | ||
| 10 | <Platform>x64</Platform> | ||
| 11 | </ProjectConfiguration> | ||
| 12 | <ProjectConfiguration Include="Release|Win32"> | ||
| 13 | <Configuration>Release</Configuration> | ||
| 14 | <Platform>Win32</Platform> | ||
| 15 | </ProjectConfiguration> | ||
| 16 | <ProjectConfiguration Include="Release|x64"> | ||
| 17 | <Configuration>Release</Configuration> | ||
| 18 | <Platform>x64</Platform> | ||
| 19 | </ProjectConfiguration> | ||
| 20 | </ItemGroup> | ||
| 21 | <ItemGroup> | ||
| 22 | <None Include="scm_rev_gen.js"> | ||
| 23 | </None> | ||
| 24 | </ItemGroup> | ||
| 25 | <ItemGroup> | ||
| 26 | <ClInclude Include="force_rebuild.h" /> | ||
| 27 | <ClInclude Include="src\scm_rev.h" /> | ||
| 28 | </ItemGroup> | ||
| 29 | <PropertyGroup Label="Globals"> | ||
| 30 | <ProjectGuid>{69F00340-5C3D-449F-9A80-958435C6CF06}</ProjectGuid> | ||
| 31 | <RootNamespace>scm_rev_gen</RootNamespace> | ||
| 32 | <ProjectName>scm_rev_gen</ProjectName> | ||
| 33 | </PropertyGroup> | ||
| 34 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
| 35 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | ||
| 36 | <ConfigurationType>Utility</ConfigurationType> | ||
| 37 | <UseDebugLibraries>false</UseDebugLibraries> | ||
| 38 | <CharacterSet>Unicode</CharacterSet> | ||
| 39 | </PropertyGroup> | ||
| 40 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
| 41 | <ImportGroup Label="ExtensionSettings"> | ||
| 42 | </ImportGroup> | ||
| 43 | <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | ||
| 44 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
| 45 | <Import Project="..\..\vsprops\base.props" /> | ||
| 46 | </ImportGroup> | ||
| 47 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
| 48 | <Import Project="..\..\vsprops\base.props" /> | ||
| 49 | </ImportGroup> | ||
| 50 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
| 51 | <Import Project="..\..\vsprops\base.props" /> | ||
| 52 | </ImportGroup> | ||
| 53 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
| 54 | <Import Project="..\..\vsprops\base.props" /> | ||
| 55 | </ImportGroup> | ||
| 56 | <PropertyGroup Label="UserMacros" /> | ||
| 57 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" /> | ||
| 58 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> | ||
| 59 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" /> | ||
| 60 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" /> | ||
| 61 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
| 62 | <PreBuildEvent> | ||
| 63 | <Command>cscript /nologo /E:JScript "scm_rev_gen.js"</Command> | ||
| 64 | </PreBuildEvent> | ||
| 65 | </ItemDefinitionGroup> | ||
| 66 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
| 67 | <PreBuildEvent> | ||
| 68 | <Command>cscript /nologo /E:JScript "scm_rev_gen.js"</Command> | ||
| 69 | </PreBuildEvent> | ||
| 70 | </ItemDefinitionGroup> | ||
| 71 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
| 72 | <PreBuildEvent> | ||
| 73 | <Command>cscript /nologo /E:JScript "scm_rev_gen.js"</Command> | ||
| 74 | </PreBuildEvent> | ||
| 75 | </ItemDefinitionGroup> | ||
| 76 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
| 77 | <ImportGroup Label="ExtensionTargets"> | ||
| 78 | </ImportGroup> | ||
| 79 | </Project> \ No newline at end of file | ||