21 lines
460 B
CMake
21 lines
460 B
CMake
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)
|