minecraft-pi-reborn/core/CMakeLists.txt

11 lines
229 B
CMake
Raw Normal View History

2020-09-25 16:43:53 +00:00
cmake_minimum_required(VERSION 3.1.0)
project(core)
add_compile_options(-Wall -Wextra -Werror)
2020-10-30 22:25:08 +00:00
add_library(bcm_host SHARED src/stubs/bcm_host.c)
add_library(EGL SHARED src/stubs/EGL.c)
2020-09-25 16:43:53 +00:00
add_executable(launcher src/launcher.c)