aboutsummaryrefslogtreecommitdiff
path: root/server/CMakeLists.txt
blob: 0461d8b76e5447b065398848dff25177278ff85b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cmake_minimum_required(VERSION 3.14)

project(server)

set(CMAKE_CXX_STANDARD 17)
set(source_dir "${PROJECT_SOURCE_DIR}/src")

file(GLOB_RECURSE source_files "${source_dir}/*.cpp")
file(GLOB_RECURSE header_files "${source_dir}/*.h")

add_executable(
	server
	${source_files}
	${header_files}
)