GAMES: added new subdirectory

master
Martin Gerhardy 2021-01-28 17:44:39 +01:00
parent b0e8860eca
commit e669f2cd42
88 changed files with 8 additions and 6 deletions

View File

@ -24,12 +24,7 @@ set(CMAKE_CXX_CPPCHECK "")
endif()
add_subdirectory(modules)
if (CLIENT)
add_subdirectory(client)
endif()
if (SERVER)
add_subdirectory(server)
endif()
add_subdirectory(games)
add_subdirectory(tools)
if (VISUALTESTS)
add_subdirectory(tests)

1
src/games/CMakeLists.txt Normal file
View File

@ -0,0 +1 @@
add_subdirectory(openworld)

View File

@ -0,0 +1,6 @@
if (CLIENT)
add_subdirectory(client)
endif()
if (SERVER)
add_subdirectory(server)
endif()