minecraft-pi-reborn/launcher/CMakeLists.txt

11 lines
193 B
CMake
Raw Normal View History

2021-01-27 21:26:19 +00:00
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 /)