aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorLeifa <26681464+TrickyLeifa@users.noreply.github.com>2024-07-09 13:07:30 +0200
committerGitHub <noreply@github.com>2024-07-09 13:07:30 +0200
commitefd2571459924f40718130f7edd28a72a76b12d7 (patch)
tree91751194abb0bfe1306976d676740b43a53dd81b /CMakeLists.txt
parent662d4781d2653e02b9f3727a9299ded8c7b1eaa2 (diff)
Remove TCP entry point (#1007)
* Remove TCP entry point Resolve #987 * Remove TCP entry point * Servers that do not support WebSocket will be marked as `Legacy` * Removal of TCP connection from the master will follow later. * Tweaked error message
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt9
1 files changed, 3 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8488259b..2e5b24e1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -78,12 +78,8 @@ add_executable(Attorney_Online
src/lobby.cpp
src/lobby.h
src/main.cpp
- src/net/netconnection.cpp
- src/net/netconnection.h
- src/net/nettcpconnection.cpp
- src/net/nettcpconnection.h
- src/net/netwebsocketconnection.cpp
- src/net/netwebsocketconnection.h
+ src/network/websocketconnection.cpp
+ src/network/websocketconnection.h
src/networkmanager.cpp
src/networkmanager.h
src/options.cpp
@@ -103,6 +99,7 @@ add_executable(Attorney_Online
src/widgets/server_editor_dialog.h
data.qrc
src/screenslidetimer.h src/screenslidetimer.cpp
+ src/network/serverinfo.h src/network/serverinfo.cpp
)
set_target_properties(Attorney_Online PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bin")