2022-06-27 18:47:55 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16.0)
|
|
|
|
|
|
|
|
# Build For ARM
|
|
|
|
set(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc)
|
|
|
|
set(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++)
|
|
|
|
|
|
|
|
# Start Project
|
|
|
|
project(recipes)
|
|
|
|
|
|
|
|
# Include SDK
|
2021-12-01 02:40:02 +00:00
|
|
|
include("$ENV{HOME}/.minecraft-pi/sdk/lib/minecraft-pi-reborn-legacy-client/sdk/sdk.cmake")
|
2022-06-27 18:47:55 +00:00
|
|
|
|
|
|
|
# Build
|
|
|
|
add_library(recipes SHARED recipes.cpp)
|
|
|
|
target_link_libraries(recipes mods-headers reborn-util symbols misc)
|