summaryrefslogtreecommitdiffstats
path: root/editor/editor_about.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-02-08 20:50:37 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-02-09 09:20:17 +0100
commit90162851a79f46a0e8887e9a403b9ee4db333eb9 (patch)
tree8bc70136e480e953a1b064c8b728165058934a54 /editor/editor_about.cpp
parent3cb9dc78d6001af550f125bb6f8b7da27a291add (diff)
downloadredot-engine-90162851a79f46a0e8887e9a403b9ee4db333eb9.tar.gz
Core: Move generated `VERSION_HASH` to a `.cpp` file
This lets us have its definition in `core/version.h` and avoid rebuilding a handful of files every time the commit hash changes.
Diffstat (limited to 'editor/editor_about.cpp')
-rw-r--r--editor/editor_about.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp
index 54377971c6..4309f55a2b 100644
--- a/editor/editor_about.cpp
+++ b/editor/editor_about.cpp
@@ -29,13 +29,12 @@
/*************************************************************************/
#include "editor_about.h"
-#include "editor_node.h"
#include "core/authors.gen.h"
#include "core/donors.gen.h"
#include "core/license.gen.h"
#include "core/version.h"
-#include "core/version_hash.gen.h"
+#include "editor_node.h"
// The metadata key used to store and retrieve the version text to copy to the clipboard.
static const String META_TEXT_TO_COPY = "text_to_copy";