This commit fixes the project dependency order inside the CPPEvalClient.vcxproj file
This commit is contained in:
Родитель
163a49b07f
Коммит
7326be0a7c
|
@ -33,7 +33,8 @@ int _tmain(int argc, _TCHAR* argv[])
|
||||||
{
|
{
|
||||||
// Get the binary path (current working directory)
|
// Get the binary path (current working directory)
|
||||||
argc = 0;
|
argc = 0;
|
||||||
std::string app(argv[0]);
|
std::wstring wapp(argv[0]);
|
||||||
|
std::string app(wapp.begin(), wapp.end());
|
||||||
std::string path = app.substr(0, app.rfind("\\"));
|
std::string path = app.substr(0, app.rfind("\\"));
|
||||||
|
|
||||||
// Load the eval library
|
// Load the eval library
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
<RootNamespace>CPPEvalClient</RootNamespace>
|
<RootNamespace>CPPEvalClient</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(SolutionDir)\CNTK.Cpp.props" />
|
<Import Project="$(SolutionDir)\CNTK.Cpp.props" />
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<PropertyGroup Condition="$(DebugBuild)" Label="Configuration">
|
<PropertyGroup Condition="$(DebugBuild)" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
@ -42,6 +40,10 @@
|
||||||
<UseIntelMKL>No</UseIntelMKL>
|
<UseIntelMKL>No</UseIntelMKL>
|
||||||
<UseIntelIPP>false</UseIntelIPP>
|
<UseIntelIPP>false</UseIntelIPP>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<!--Importing CPP defaults must occur after declaring the desired toolset above
|
||||||
|
Otherwise, the build may default back to an previous toolset -->
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings" />
|
<ImportGroup Label="ExtensionSettings" />
|
||||||
<ImportGroup Label="PropertySheets">
|
<ImportGroup Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
|
Загрузка…
Ссылка в новой задаче