diff options
author | lawnjelly <lawnjelly@gmail.com> | 2023-05-17 16:22:26 +0100 |
---|---|---|
committer | lawnjelly <lawnjelly@gmail.com> | 2023-06-06 15:36:51 +0100 |
commit | b69c8b47916e4b3511c1aeff254ebfa6deef37ba (patch) | |
tree | 121f1601353f788375749abd834bfb5515afa843 /editor/editor_about.cpp | |
parent | 543750a1b3f5696f9ba8e91cb49dc7db05d2ae62 (diff) | |
download | redot-engine-b69c8b47916e4b3511c1aeff254ebfa6deef37ba.tar.gz |
Single Compilation Unit build.
Adds support for simple SCU build (DEV_ENABLED only).
This speeds up compilation by compiling multiple cpp files within a single translation unit.
Diffstat (limited to 'editor/editor_about.cpp')
-rw-r--r-- | editor/editor_about.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index 25bca2a099..a4147acade 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -36,7 +36,7 @@ #include "core/version.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"; +const String EditorAbout::META_TEXT_TO_COPY = "text_to_copy"; void EditorAbout::_theme_changed() { const Ref<Font> font = get_theme_font(SNAME("source"), SNAME("EditorFonts")); |