From 3b7e236971df3aaca6b9481cec72c70bb4a3349f Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 14 Jun 2020 00:42:01 +0200 Subject: [PATCH] - moved menudef.cpp to "common", as the last piece of the menu code. --- src/CMakeLists.txt | 2 +- src/{ => common}/menu/menudef.cpp | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{ => common}/menu/menudef.cpp (100%) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5c28f87bc..ea5f328d1 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -956,7 +956,6 @@ set (PCH_SOURCES maploader/postprocessor.cpp menu/doommenu.cpp menu/loadsavemenu.cpp - menu/menudef.cpp menu/playermenu.cpp gamedata/textures/animations.cpp gamedata/textures/anim_switches.cpp @@ -1120,6 +1119,7 @@ set (PCH_SOURCES common/menu/messagebox.cpp common/menu/optionmenu.cpp common/menu/resolutionmenu.cpp + common/menu/menudef.cpp common/rendering/v_framebuffer.cpp common/rendering/v_video.cpp diff --git a/src/menu/menudef.cpp b/src/common/menu/menudef.cpp similarity index 100% rename from src/menu/menudef.cpp rename to src/common/menu/menudef.cpp