makerom/deps/libyaml/CMakeLists.txt
2025-01-15 12:29:18 +00:00

10 lines
190 B
CMake

cmake_minimum_required(VERSION 3.22)
project(yaml)
include_directories(src)
file(GLOB SOURCES src/*.c)
add_library(yaml STATIC ${SOURCES})
target_include_directories(yaml PUBLIC include)