From af641426fad35cd857c1f14bda523db3d85a70cd Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Sat, 4 May 2024 16:44:28 -0700 Subject: Initial commit. --- font/CMakeLists.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 font/CMakeLists.txt (limited to 'font/CMakeLists.txt') diff --git a/font/CMakeLists.txt b/font/CMakeLists.txt new file mode 100644 index 0000000..6eb6fc0 --- /dev/null +++ b/font/CMakeLists.txt @@ -0,0 +1,15 @@ +cmake_minimum_required(VERSION 3.0) + +project(font) + +set(CMAKE_C_STANDARD 17) +set(CMAKE_C_STANDARD_REQUIRED On) +set(CMAKE_C_EXTENSIONS Off) + +add_library(font + font.c) + +target_include_directories(font PUBLIC + .) + +target_compile_options(font PRIVATE -Wall -Wextra -Wpedantic) -- cgit v1.2.3