Remove Netplay

This commit is contained in:
Simone
2024-01-23 14:47:26 +01:00
parent 1f238bbd9e
commit dd527d079a
3 changed files with 1 additions and 10 deletions

View File

@@ -2,7 +2,6 @@ file(GLOB SOURCES *.cpp)
file(GLOB HEADERS *.hpp) file(GLOB HEADERS *.hpp)
add_subdirectory(core) add_subdirectory(core)
add_subdirectory(netplay)
add_library(backend ${SOURCES} ${HEADERS}) add_library(backend ${SOURCES} ${HEADERS})
target_link_libraries(backend PRIVATE core netplay) target_link_libraries(backend PRIVATE core)

View File

@@ -1,4 +0,0 @@
file(GLOB SOURCES *.cpp)
file(GLOB HEADERS *.hpp)
add_library(netplay ${SOURCES} ${HEADERS})

View File

@@ -1,4 +0,0 @@
#include <Netplay.hpp>
namespace Netplay {
}