forked from beerpsi/chuniio-brokenithm
beerpsi
f101a07bb2
- No more global state, every connection has their own context - Split off server implementations into their own files - Added Brokenithm AimeIO so users don't have to scour their own files
13 lines
307 B
CMake
13 lines
307 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
project(brokenithm)
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
|
|
include_directories("${CMAKE_SOURCE_DIR}/include/")
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
include_directories(.)
|
|
|
|
add_subdirectory(aimeio)
|
|
add_subdirectory(chuniio)
|
|
add_subdirectory(util)
|