summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@qt.io>2019-05-22 16:21:03 +0300
committerMiikka Heikkinen <miikka.heikkinen@qt.io>2019-05-22 16:22:50 +0300
commit8fcc9f2bd7929a945f4146d721bb8525c2cb8b98 (patch)
tree5af2db794c47cd6ebdaf072b09bdd08e72e842f8
parent36596f65fd4631e7dd89fde816e450ae26c5bcc9 (diff)
Fix AttributeHashes application after dir structure changes
Change-Id: I35f8fc25f60aa07d17f3af7925f32de7b6080c9e Reviewed-by: Pasi Keränen <pasi.keranen@qt.io>
-rw-r--r--src/Runtime/AttributeHashes/AttributeHashes.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Runtime/AttributeHashes/AttributeHashes.cpp b/src/Runtime/AttributeHashes/AttributeHashes.cpp
index c50c8b12..47d33ac7 100644
--- a/src/Runtime/AttributeHashes/AttributeHashes.cpp
+++ b/src/Runtime/AttributeHashes/AttributeHashes.cpp
@@ -64,7 +64,7 @@ typedef std::vector<std::string> TStringList;
//==============================================================================
const char g_Text[] = "Qt3DSAttributeHashes.txt";
const char g_Include[] = "Qt3DSAttributeHashes.h";
-const char g_Source[] = "..\\Source\\Qt3DSAttributeHashes.cpp";
+const char g_Source[] = "Qt3DSAttributeHashes.cpp";
const char g_TestString[] = "qt.io";
//==============================================================================
@@ -212,7 +212,7 @@ int main(int argc, char *argv[])
std::ifstream theText(g_Text);
if (!theText) {
fprintf(stderr, "Failed: Could not input text file, set working directory to "
- "Runtime\\Source\\Include and try again.\n");
+ "src\\Runtime\\Source\\runtime and try again.\n");
return -1;
}
@@ -242,7 +242,7 @@ int main(int argc, char *argv[])
"/****************************************************************************\n"
"**\n"
"** Copyright (C) 1993-2009 NVIDIA Corporation.\n"
- "** Copyright (C) 2017 The Qt Company Ltd.\n"
+ "** Copyright (C) 2019 The Qt Company Ltd.\n"
"** Contact: https://www.qt.io/licensing/\n"
"**\n"
"** This file is part of Qt 3D Studio.\n"