Subversion Repositories Games.Chess Giants

Rev

Rev 186 | 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\tbprobe.h" />
44
    <ClInclude Include="thread.h" />
45
    <ClInclude Include="thread_win32.h" />
46
    <ClInclude Include="timeman.h" />
47
    <ClInclude Include="tt.h" />
48
    <ClInclude Include="types.h" />
49
    <ClInclude Include="uci.h" />
50
  </ItemGroup>
51
  <PropertyGroup Label="Globals">
52
    <ProjectGuid>{9EEF5B92-138C-4311-ABEC-2AB119F9A3E0}</ProjectGuid>
193 pmbaty 53
    <WindowsTargetPlatformVersion>7.0</WindowsTargetPlatformVersion>
185 pmbaty 54
    <ProjectName>stockfish</ProjectName>
96 pmbaty 55
  </PropertyGroup>
56
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
57
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
193 pmbaty 58
    <PlatformToolset>v141_xp</PlatformToolset>
96 pmbaty 59
  </PropertyGroup>
60
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
61
  <ImportGroup Label="ExtensionSettings">
62
  </ImportGroup>
63
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
64
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
65
  </ImportGroup>
66
  <PropertyGroup Label="UserMacros" />
67
  <PropertyGroup>
68
    <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
193 pmbaty 69
    <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir).build\$(ProjectName)-$(Configuration)-$(Platform)\</OutDir>
96 pmbaty 70
  </PropertyGroup>
169 pmbaty 71
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
193 pmbaty 72
    <IntDir>$(SolutionDir).build\$(ProjectName)-$(Configuration)-$(Platform)\</IntDir>
169 pmbaty 73
  </PropertyGroup>
96 pmbaty 74
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
75
    <ClCompile>
185 pmbaty 76
      <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;NO_PREFETCH;%(PreprocessorDefinitions)</PreprocessorDefinitions>
96 pmbaty 77
      <WarningLevel>Level3</WarningLevel>
179 pmbaty 78
      <Optimization>MaxSpeed</Optimization>
96 pmbaty 79
      <EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>
80
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
81
    </ClCompile>
82
    <Link>
83
      <SubSystem>Console</SubSystem>
186 pmbaty 84
      <StackReserveSize>8388608</StackReserveSize>
85
      <StackCommitSize>32768</StackCommitSize>
96 pmbaty 86
    </Link>
87
    <PostBuildEvent>
88
    </PostBuildEvent>
89
    <PostBuildEvent>
169 pmbaty 90
      <Command>"Z:\pmbaty\Documents\Mes projets\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 91
    </PostBuildEvent>
92
    <PostBuildEvent>
93
      <Message>Signing and copying files...</Message>
94
    </PostBuildEvent>
183 pmbaty 95
    <PreBuildEvent>
96
      <Command>echo.&amp;echo MASSIVE WARNING: STOCKFISH SHOULD BE COMPILED WITH CLANG!!! SEE BUILD TOOLS IN engine-stockfish DIRECTORY! Compiling anyway...&amp;ping 127.0.0.1&gt;nul</Command>
97
    </PreBuildEvent>
96 pmbaty 98
  </ItemDefinitionGroup>
99
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
100
  <ImportGroup Label="ExtensionTargets">
101
  </ImportGroup>
102
</Project>