From 0a7d9319afca91666fc53d92d99678fa0cf9211d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 28 Aug 2020 12:53:02 +0200 Subject: [PATCH] ChessEngine: Move from Applications to Services This is not a stand-alone application. :^) --- Applications/CMakeLists.txt | 1 - Services/CMakeLists.txt | 1 + {Applications => Services}/ChessEngine/CMakeLists.txt | 0 {Applications => Services}/ChessEngine/ChessEngine.cpp | 0 {Applications => Services}/ChessEngine/ChessEngine.h | 0 {Applications => Services}/ChessEngine/MCTSTree.cpp | 0 {Applications => Services}/ChessEngine/MCTSTree.h | 0 {Applications => Services}/ChessEngine/main.cpp | 0 8 files changed, 1 insertion(+), 1 deletion(-) rename {Applications => Services}/ChessEngine/CMakeLists.txt (100%) rename {Applications => Services}/ChessEngine/ChessEngine.cpp (100%) rename {Applications => Services}/ChessEngine/ChessEngine.h (100%) rename {Applications => Services}/ChessEngine/MCTSTree.cpp (100%) rename {Applications => Services}/ChessEngine/MCTSTree.h (100%) rename {Applications => Services}/ChessEngine/main.cpp (100%) diff --git a/Applications/CMakeLists.txt b/Applications/CMakeLists.txt index 8cfdf4bda9..d7027e51ff 100644 --- a/Applications/CMakeLists.txt +++ b/Applications/CMakeLists.txt @@ -2,7 +2,6 @@ add_subdirectory(About) add_subdirectory(Browser) add_subdirectory(Calculator) add_subdirectory(Calendar) -add_subdirectory(ChessEngine) add_subdirectory(Debugger) add_subdirectory(DisplaySettings) add_subdirectory(FileManager) diff --git a/Services/CMakeLists.txt b/Services/CMakeLists.txt index 71a343a009..ca5b7a7de9 100644 --- a/Services/CMakeLists.txt +++ b/Services/CMakeLists.txt @@ -1,4 +1,5 @@ add_subdirectory(AudioServer) +add_subdirectory(ChessEngine) add_subdirectory(Clipboard) add_subdirectory(DHCPClient) add_subdirectory(ImageDecoder) diff --git a/Applications/ChessEngine/CMakeLists.txt b/Services/ChessEngine/CMakeLists.txt similarity index 100% rename from Applications/ChessEngine/CMakeLists.txt rename to Services/ChessEngine/CMakeLists.txt diff --git a/Applications/ChessEngine/ChessEngine.cpp b/Services/ChessEngine/ChessEngine.cpp similarity index 100% rename from Applications/ChessEngine/ChessEngine.cpp rename to Services/ChessEngine/ChessEngine.cpp diff --git a/Applications/ChessEngine/ChessEngine.h b/Services/ChessEngine/ChessEngine.h similarity index 100% rename from Applications/ChessEngine/ChessEngine.h rename to Services/ChessEngine/ChessEngine.h diff --git a/Applications/ChessEngine/MCTSTree.cpp b/Services/ChessEngine/MCTSTree.cpp similarity index 100% rename from Applications/ChessEngine/MCTSTree.cpp rename to Services/ChessEngine/MCTSTree.cpp diff --git a/Applications/ChessEngine/MCTSTree.h b/Services/ChessEngine/MCTSTree.h similarity index 100% rename from Applications/ChessEngine/MCTSTree.h rename to Services/ChessEngine/MCTSTree.h diff --git a/Applications/ChessEngine/main.cpp b/Services/ChessEngine/main.cpp similarity index 100% rename from Applications/ChessEngine/main.cpp rename to Services/ChessEngine/main.cpp