11 lines
225 B
CMake
11 lines
225 B
CMake
cmake_minimum_required(VERSION 3.22)
|
|
|
|
project(makerom)
|
|
|
|
add_subdirectory(deps)
|
|
|
|
include_directories(src)
|
|
file(GLOB SOURCES src/*.c)
|
|
|
|
add_executable(makerom ${SOURCES})
|
|
target_link_libraries(makerom PRIVATE blz mbedtls yaml m) |