mirror of
https://git.k0rb4k.net/K0RB4K/qotd.git
synced 2026-09-26 21:31:01 +00:00
6 lines
150 B
CMake
6 lines
150 B
CMake
cmake_minimum_required(VERSION 3.19)
|
|
project(qotd C)
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
add_executable(qotd main.c quote.c quote.h server.c server.h config.h) |