simworld/CMakeLists.txt

13 lines
328 B
CMake
Raw Normal View History

# CmakeLists.txt
2024-09-28 06:34:31 +00:00
cmake_minimum_required(VERSION 3.10)
project(simworld VERSION 0.0.1 LANGUAGES C)
2024-09-28 06:34:31 +00:00
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wformat=2 -Wshadow -Wwrite-strings -Wstrict-prototypes -g")
2024-09-28 06:34:31 +00:00
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
2024-09-28 06:34:31 +00:00
add_subdirectory(common)
add_subdirectory(server)
# add_subdirectory(client)