This commit fixes the project dependency order inside the CPPEvalClient.vcxproj file

This commit is contained in:
Gaizka Navarro 2016-05-06 10:12:23 +02:00
Родитель 163a49b07f
Коммит 7326be0a7c
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -33,7 +33,8 @@ int _tmain(int argc, _TCHAR* argv[])
{
// Get the binary path (current working directory)
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("\\"));
// Load the eval library

Просмотреть файл

@ -24,8 +24,6 @@
<RootNamespace>CPPEvalClient</RootNamespace>
</PropertyGroup>
<Import Project="$(SolutionDir)\CNTK.Cpp.props" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<PropertyGroup Condition="$(DebugBuild)" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
@ -42,6 +40,10 @@
<UseIntelMKL>No</UseIntelMKL>
<UseIntelIPP>false</UseIntelIPP>
</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="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />