From f86e64e712ab1af01467f7c324c7ba834b44754f Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 15 Oct 2016 10:39:58 +0200 Subject: [PATCH] - renamed thingdef_expression to codegen. Eventually this needs to be split up into smaller units because the file is already quite large and there's still a lot to add here. --- src/CMakeLists.txt | 2 +- .../codegeneration/{thingdef_expression.cpp => codegen.cpp} | 0 src/scripting/codegeneration/{thingdef_exp.h => codegen.h} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename src/scripting/codegeneration/{thingdef_expression.cpp => codegen.cpp} (100%) rename src/scripting/codegeneration/{thingdef_exp.h => codegen.h} (100%) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b612684d5c..ab9306447f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1247,7 +1247,7 @@ set (PCH_SOURCES scripting/thingdef.cpp scripting/thingdef_data.cpp scripting/thingdef_properties.cpp - scripting/codegeneration/thingdef_expression.cpp + scripting/codegeneration/codegen.cpp scripting/decorate/olddecorations.cpp scripting/decorate/thingdef_exp.cpp scripting/decorate/thingdef_parse.cpp diff --git a/src/scripting/codegeneration/thingdef_expression.cpp b/src/scripting/codegeneration/codegen.cpp similarity index 100% rename from src/scripting/codegeneration/thingdef_expression.cpp rename to src/scripting/codegeneration/codegen.cpp diff --git a/src/scripting/codegeneration/thingdef_exp.h b/src/scripting/codegeneration/codegen.h similarity index 100% rename from src/scripting/codegeneration/thingdef_exp.h rename to src/scripting/codegeneration/codegen.h