mirror of
https://git.k0rb4k.net/K0RB4K/qotd.git
synced 2026-09-26 21:31:01 +00:00
first version of client
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
cmake_minimum_required(VERSION 3.19)
|
||||
project(qotd C)
|
||||
|
||||
message("STATIC_BUILD=${STATIC_BUILD}")
|
||||
|
||||
set(CMAKE_C_STANDARD 99)
|
||||
|
||||
add_executable(qotd_c main.c)
|
||||
|
||||
if ( STATIC_BUILD )
|
||||
target_link_libraries(qotd -static)
|
||||
endif()
|
||||
Reference in New Issue
Block a user