Subversion Repositories Games.Chess Giants

Rev

Rev 96 | Rev 169 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
96 pmbaty 1
<?xml version="1.0" encoding="utf-8"?>
2
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <ItemGroup Label="ProjectConfigurations">
4
    <ProjectConfiguration Include="Release|Win32">
5
      <Configuration>Release</Configuration>
6
      <Platform>Win32</Platform>
7
    </ProjectConfiguration>
8
  </ItemGroup>
9
  <ItemGroup>
10
    <ClCompile Include="benchmark.cpp" />
11
    <ClCompile Include="bitbase.cpp" />
12
    <ClCompile Include="bitboard.cpp" />
13
    <ClCompile Include="endgame.cpp" />
14
    <ClCompile Include="evaluate.cpp" />
15
    <ClCompile Include="main.cpp" />
16
    <ClCompile Include="material.cpp" />
17
    <ClCompile Include="misc.cpp" />
18
    <ClCompile Include="movegen.cpp" />
19
    <ClCompile Include="movepick.cpp" />
20
    <ClCompile Include="pawns.cpp" />
21
    <ClCompile Include="position.cpp" />
22
    <ClCompile Include="psqt.cpp" />
23
    <ClCompile Include="search.cpp" />
24
    <ClCompile Include="syzygy\tbprobe.cpp" />
25
    <ClCompile Include="thread.cpp" />
26
    <ClCompile Include="timeman.cpp" />
27
    <ClCompile Include="tt.cpp" />
28
    <ClCompile Include="uci.cpp" />
29
    <ClCompile Include="ucioption.cpp" />
30
  </ItemGroup>
31
  <ItemGroup>
32
    <ClInclude Include="bitboard.h" />
33
    <ClInclude Include="bitcount.h" />
34
    <ClInclude Include="endgame.h" />
35
    <ClInclude Include="evaluate.h" />
36
    <ClInclude Include="material.h" />
37
    <ClInclude Include="misc.h" />
38
    <ClInclude Include="movegen.h" />
39
    <ClInclude Include="movepick.h" />
40
    <ClInclude Include="pawns.h" />
41
    <ClInclude Include="position.h" />
42
    <ClInclude Include="search.h" />
43
    <ClInclude Include="syzygy\tbcore.h" />
44
    <ClInclude Include="syzygy\tbprobe.h" />
45
    <ClInclude Include="thread.h" />
46
    <ClInclude Include="thread_win32.h" />
47
    <ClInclude Include="timeman.h" />
48
    <ClInclude Include="tt.h" />
49
    <ClInclude Include="types.h" />
50
    <ClInclude Include="uci.h" />
51
  </ItemGroup>
52
  <PropertyGroup Label="Globals">
53
    <WindowsTargetPlatformVersion>7.1</WindowsTargetPlatformVersion>
54
    <ProjectGuid>{9EEF5B92-138C-4311-ABEC-2AB119F9A3E0}</ProjectGuid>
55
  </PropertyGroup>
56
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
57
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
58
    <CharacterSet>MultiByte</CharacterSet>
59
    <PlatformToolset>v140_xp</PlatformToolset>
60
  </PropertyGroup>
61
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
62
  <ImportGroup Label="ExtensionSettings">
63
  </ImportGroup>
64
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
65
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
66
  </ImportGroup>
67
  <PropertyGroup Label="UserMacros" />
68
  <PropertyGroup>
69
    <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
70
    <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</OutDir>
71
    <EmbedManifest Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</EmbedManifest>
72
  </PropertyGroup>
73
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
74
    <ClCompile>
75
      <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
76
      <WarningLevel>Level3</WarningLevel>
77
      <Optimization>Full</Optimization>
78
      <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
79
      <IntrinsicFunctions>true</IntrinsicFunctions>
80
      <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
81
      <OmitFramePointers>true</OmitFramePointers>
82
      <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations>
83
      <WholeProgramOptimization>true</WholeProgramOptimization>
84
      <BufferSecurityCheck>false</BufferSecurityCheck>
85
      <EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>
86
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
87
    </ClCompile>
88
    <Link>
89
      <SubSystem>Console</SubSystem>
90
      <LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
91
    </Link>
92
    <PostBuildEvent>
93
    </PostBuildEvent>
94
    <PostBuildEvent>
154 pmbaty 95
      <Command>"P:\Windows code signer\sign.bat" "$(OutDir)$(TargetName)$(TargetExt)" "Stockfish chess engine for Chess Giants" "Pierre-Marie Baty" pm@pmbaty.com FR "Stockfish chess engine for Chess Giants" https://www.pmbaty.com/chess/ &amp; copy "$(OutDir)$(TargetName)$(TargetExt)" "..\engines\Stockfish\$(TargetName)$(TargetExt)"</Command>
96 pmbaty 96
    </PostBuildEvent>
97
    <PostBuildEvent>
98
      <Message>Signing and copying files...</Message>
99
    </PostBuildEvent>
100
  </ItemDefinitionGroup>
101
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
102
  <ImportGroup Label="ExtensionTargets">
103
  </ImportGroup>
104
</Project>