rts/tools/CMakeLists.txt

9 lines
312 B
CMake
Raw Normal View History

2021-07-03 05:30:56 +02:00
cmake_minimum_required(VERSION 3.0)
project(utils)
add_executable(container "container.c")
add_executable(add-header "add-header.c")
set(cflags -Wall -g3)
target_compile_options(container PUBLIC ${cflags})
target_compile_options(add-header PUBLIC ${cflags})
install(TARGETS container add-header DESTINATION bin)