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
9 lines
250 B
CMake
9 lines
250 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
project(util)
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
|
|
include_directories("${CMAKE_SOURCE_DIR}/include/")
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
add_library(util OBJECT dprintf.c dprintf.h)
|