TheBrokenRail
4d8c8ae3c1
All checks were successful
minecraft-pi-reborn/pipeline/head This commit looks good
11 lines
235 B
CMake
11 lines
235 B
CMake
cmake_minimum_required(VERSION 3.1.0)
|
|
|
|
project(launcher)
|
|
|
|
add_compile_options(-Wall -Wextra -Werror)
|
|
|
|
add_executable(launcher src/launcher.c)
|
|
|
|
# Install
|
|
install(TARGETS launcher DESTINATION /)
|
|
install(PROGRAMS src/run.sh DESTINATION /) |