first version of client

This commit is contained in:
2025-02-28 12:34:45 +01:00
parent e078a1023a
commit bf7020f791
7 changed files with 81 additions and 0 deletions
+12
View File
@@ -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()