simworld/CMakeLists.txt

13 lines
365 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 -std=gnu17 -Wpedantic -pedantic-errors -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)
2024-10-04 05:05:43 +00:00
add_subdirectory(client)