Setup buildsystem for c apps

Added fbcp to repo
Added setup-apps.sh
Disable non runtable apps
This commit is contained in:
Andreas Völker
2018-12-30 12:41:38 +01:00
parent 9283caed3b
commit 2f16ff59b8
8 changed files with 186 additions and 18 deletions

11
apps/c-src/CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 2.8)
SET(COMPILE_DEFINITIONS -Werror -Wall)
set(CMAKE_C_FLAGS "-O3")
add_executable(fbcp fbcp.c)
target_link_libraries(fbcp m)
add_executable(flicker flicker.c)