aboutsummaryrefslogtreecommitdiff
path: root/tools/CMakeLists.txt
blob: 14d2b0eed94830fe554085db9c6f347a2a61f368 (plain) (blame)
1
2
3
4
5
6
7
8
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)