makerom/deps/libyaml/CMakeLists.txt

10 lines
190 B
CMake
Raw Normal View History

2025-01-15 13:29:18 +01:00
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)