This commit is contained in:
2025-01-20 20:08:42 +00:00
parent feea16ef0c
commit 851c5e2aed
9 changed files with 40 additions and 2 deletions

20
CMakeLists.txt Normal file
View File

@@ -0,0 +1,20 @@
cmake_minimum_required(VERSION 3.28.0)
#-------------------------------------
# oltg is a OnLineTerminalGame
# what this project should do
# is build a game that runs in
# the teraminal.
#
# -Note-
# The Server should be built with
# the clinent.
#-------------------------------------
project(OnLineTerminalGame)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
#add_subdirectory(tests)
add_subdirectory(libs)
add_subdirectory(src)