From d089aa8d2e6551b10fef6a59014b6ddbe6c7f3f8 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 13 Nov 2020 11:25:43 +0100 Subject: [PATCH] - moved Blood's and Exhumed's d_menu.cpp back into the gameprojects With the new autoseg code this separation is not needed anymore. --- source/CMakeLists.txt | 3 --- source/blood/CMakeLists.txt | 2 +- source/exhumed/CMakeLists.txt | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 6f363883d..d7e99b11c 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -1005,9 +1005,6 @@ set (PCH_SOURCES core/menu/loadsavemenu.cpp core/menu/razemenu.cpp - - exhumed/src/d_menu.cpp - blood/src/d_menu.cpp ) if( ${HAVE_VM_JIT} ) diff --git a/source/blood/CMakeLists.txt b/source/blood/CMakeLists.txt index dda670875..78f88be81 100644 --- a/source/blood/CMakeLists.txt +++ b/source/blood/CMakeLists.txt @@ -67,7 +67,7 @@ set( PCH_SOURCES src/view.cpp src/warp.cpp src/weapon.cpp - #src/d_menu.cpp + src/d_menu.cpp ) add_game_library( blood ) diff --git a/source/exhumed/CMakeLists.txt b/source/exhumed/CMakeLists.txt index e7ed3328f..e24689f2b 100644 --- a/source/exhumed/CMakeLists.txt +++ b/source/exhumed/CMakeLists.txt @@ -48,7 +48,7 @@ set( PCH_SOURCES src/trigdat.cpp src/view.cpp src/wasp.cpp - #src/d_menu.cpp + src/d_menu.cpp ) add_game_library( exhumed )