From ca288d08f4eb757be4c353ec6d377a5fd7d2774d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 11 Oct 2020 07:40:11 +0200 Subject: [PATCH] - compile all files with script exports in the main project. This hopefully gets around the failure to find these on on-Windows Builds. --- source/CMakeLists.txt | 3 +++ source/blood/CMakeLists.txt | 2 +- source/exhumed/CMakeLists.txt | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index d98aa111c..8134ece5e 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -992,6 +992,9 @@ 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 78f88be81..dda670875 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 e24689f2b..e7ed3328f 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 )