Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Core/GameEngine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ set(GAMEENGINE_SRC
Include/GameNetwork/User.h
Include/GameNetwork/WOLBrowser/FEBDispatch.h
Include/GameNetwork/WOLBrowser/WebBrowser.h
# Include/Precompiled/PreRTS.h
Include/Precompiled/PreRTS.h
Source/Common/AddonCompat.cpp
Source/Common/Audio/AudioEventRTS.cpp
Source/Common/Audio/AudioRequest.cpp
Expand Down Expand Up @@ -1146,7 +1146,7 @@ set(GAMEENGINE_SRC
Source/GameNetwork/udp.cpp
Source/GameNetwork/User.cpp
Source/GameNetwork/WOLBrowser/WebBrowser.cpp
# Source/Precompiled/PreRTS.cpp
Source/Precompiled/PreRTS.cpp
)

if(RTS_GAMEMEMORY_ENABLE)
Expand Down Expand Up @@ -1174,7 +1174,7 @@ add_library(corei_gameengine_public INTERFACE)
target_sources(corei_gameengine_private INTERFACE ${GAMEENGINE_SRC})

target_include_directories(corei_gameengine_private INTERFACE
# Include/Precompiled
Include/Precompiled
)

target_link_libraries(corei_gameengine_private INTERFACE
Expand All @@ -1186,7 +1186,7 @@ target_compile_definitions(corei_gameengine_private INTERFACE
)

target_precompile_headers(corei_gameengine_private INTERFACE
# Include/Precompiled/PreRTS.h
Include/Precompiled/PreRTS.h
)

target_include_directories(corei_gameengine_public INTERFACE
Expand Down
6 changes: 3 additions & 3 deletions Generals/Code/GameEngine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ set(GAMEENGINE_SRC
# Include/GameNetwork/User.h
# Include/GameNetwork/WOLBrowser/FEBDispatch.h
# Include/GameNetwork/WOLBrowser/WebBrowser.h
Include/Precompiled/PreRTS.h
# Include/Precompiled/PreRTS.h
# Source/Common/Audio/AudioEventRTS.cpp
# Source/Common/Audio/AudioRequest.cpp
# Source/Common/Audio/GameAudio.cpp
Expand Down Expand Up @@ -1052,7 +1052,7 @@ set(GAMEENGINE_SRC
# Source/GameNetwork/udp.cpp
# Source/GameNetwork/User.cpp
# Source/GameNetwork/WOLBrowser/WebBrowser.cpp
Source/Precompiled/PreRTS.cpp
# Source/Precompiled/PreRTS.cpp
)

if(RTS_GAMEMEMORY_ENABLE)
Expand Down Expand Up @@ -1096,5 +1096,5 @@ target_link_libraries(g_gameengine PUBLIC

target_precompile_headers(g_gameengine PRIVATE
[["Utility/CppMacros.h"]] # Must be first, to be removed when abandoning VC6
Include/Precompiled/PreRTS.h
# Include/Precompiled/PreRTS.h
)
133 changes: 0 additions & 133 deletions Generals/Code/GameEngine/Include/Precompiled/PreRTS.h

This file was deleted.

28 changes: 0 additions & 28 deletions Generals/Code/GameEngine/Source/Precompiled/PreRTS.cpp

This file was deleted.

6 changes: 3 additions & 3 deletions GeneralsMD/Code/GameEngine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ set(GAMEENGINE_SRC
# Include/GameNetwork/User.h
# Include/GameNetwork/WOLBrowser/FEBDispatch.h
# Include/GameNetwork/WOLBrowser/WebBrowser.h
Include/Precompiled/PreRTS.h
# Include/Precompiled/PreRTS.h
# Source/Common/Audio/AudioEventRTS.cpp
# Source/Common/Audio/AudioRequest.cpp
# Source/Common/Audio/DynamicAudioEventInfo.cpp
Expand Down Expand Up @@ -1128,7 +1128,7 @@ set(GAMEENGINE_SRC
# Source/GameNetwork/udp.cpp
# Source/GameNetwork/User.cpp
# Source/GameNetwork/WOLBrowser/WebBrowser.cpp
Source/Precompiled/PreRTS.cpp
# Source/Precompiled/PreRTS.cpp
)

if(RTS_GAMEMEMORY_ENABLE)
Expand Down Expand Up @@ -1172,5 +1172,5 @@ target_link_libraries(z_gameengine PUBLIC

target_precompile_headers(z_gameengine PRIVATE
[["Utility/CppMacros.h"]] # Must be first, to be removed when abandoning VC6
Include/Precompiled/PreRTS.h
# Include/Precompiled/PreRTS.h
)
3 changes: 3 additions & 0 deletions scripts/cpp/unify_move_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,6 +648,9 @@ def main():
#unify_file(Game.ZEROHOUR, "GameEngine/Source/Common/Bezier/BezFwdIterator.cpp", Game.CORE, "GameEngine/Source/Common/Bezier/BezFwdIterator.cpp")
#unify_file(Game.ZEROHOUR, "GameEngine/Source/Common/Bezier/BezierSegment.cpp", Game.CORE, "GameEngine/Source/Common/Bezier/BezierSegment.cpp")

#unify_file(Game.ZEROHOUR, "GameEngine/Include/Precompiled/PreRTS.h", Game.CORE, "GameEngine/Include/Precompiled/PreRTS.h")
#unify_file(Game.ZEROHOUR, "GameEngine/Source/Precompiled/PreRTS.cpp", Game.CORE, "GameEngine/Source/Precompiled/PreRTS.cpp")

return


Expand Down
Loading