2017-02-07 15:44:49 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<PropertyGroup>
|
|
|
|
<!-- Note: SolutionDir / RepoRootPath are the same in current setup -->
|
|
|
|
<RepoRootPath>$(MSBuildThisFileDirectory)</RepoRootPath>
|
|
|
|
<RelativeProjectPath>$(MSBuildProjectDirectory.Substring($(MSBuildThisFileDirectory.Length)))</RelativeProjectPath>
|
|
|
|
|
|
|
|
<OutDir>$(RepoRootPath)$(Platform)\$(Configuration)\</OutDir>
|
|
|
|
<IntDir>$(RepoRootPath)$(Platform)\.build\$(Configuration)\$(RelativeProjectPath)\</IntDir>
|
|
|
|
|
|
|
|
<DebugBuild>false</DebugBuild>
|
|
|
|
<DebugBuild Condition="$(Configuration.StartsWith('Debug'))">true</DebugBuild>
|
|
|
|
|
|
|
|
<ReleaseBuild>false</ReleaseBuild>
|
|
|
|
<ReleaseBuild Condition="!$(DebugBuild)">true</ReleaseBuild>
|
|
|
|
|
|
|
|
<GpuBuild>true</GpuBuild>
|
|
|
|
<GpuBuild Condition="$(Configuration.EndsWith('_CpuOnly'))">false</GpuBuild>
|
|
|
|
|
|
|
|
<CpuOnlyBuild>true</CpuOnlyBuild>
|
|
|
|
<CpuOnlyBuild Condition="$(GpuBuild)">false</CpuOnlyBuild>
|
|
|
|
|
|
|
|
<NoOptBuild>false</NoOptBuild>
|
|
|
|
<NoOptBuild Condition="$(Configuration.Contains('NoOpt'))">true</NoOptBuild>
|
|
|
|
|
|
|
|
<HasSwig>false</HasSwig>
|
|
|
|
<HasSwig Condition="Exists('$(SWIG_PATH)\swig.exe')">true</HasSwig>
|
2017-03-21 19:18:35 +03:00
|
|
|
|
2017-01-13 00:24:35 +03:00
|
|
|
<HasJava>false</HasJava>
|
|
|
|
<HasJava Condition="Exists('$(JAVA_HOME)\bin\javac.exe')">true</HasJava>
|
|
|
|
|
2017-05-24 15:14:36 +03:00
|
|
|
<CntkComponentVersion>2.0</CntkComponentVersion>
|
2017-04-12 11:31:59 +03:00
|
|
|
<CntkComponentVersion Condition="$(DebugBuild)">$(CntkComponentVersion)d</CntkComponentVersion>
|
2017-02-07 15:44:49 +03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2017-03-31 16:05:06 +03:00
|
|
|
</Project>
|