Append 'd' to 'TestApp' when compiling with _DEBUG

This commit is contained in:
Francis ANDRE 2018-06-03 16:05:49 +02:00
parent 9ba9254623
commit 4542a15b86

View File

@ -159,6 +159,9 @@ void ProcessTest::testLaunchArgs()
{
#if defined (_WIN32) && !defined(_WIN32_WCE)
std::string name("TestApp");
#if defined(_DEBUG)
name += 'd';
#endif
std::string cmd = name;
std::vector<std::string> args;