minecraft-pi-reborn/dependencies/runtime/CMakeLists.txt

19 lines
492 B
CMake
Raw Normal View History

2024-06-08 20:30:39 +00:00
project(runtime)
## Extra Runtime
# QEMU
2024-11-10 10:26:41 +00:00
set(QEMU_VERSION "9.1.1")
2024-11-24 22:42:36 +00:00
force_set(RUNTIME_QEMU_ARCHIVE "${CMAKE_CURRENT_SOURCE_DIR}/../../archives/qemu-${QEMU_VERSION}.tar.xz" FILEPATH)
2024-06-08 20:30:39 +00:00
if(NOT BUILD_NATIVE_COMPONENTS)
2024-11-24 22:42:36 +00:00
force_set(TRAMPOLINE_HEADERS_ONLY TRUE BOOL)
2024-06-08 20:30:39 +00:00
endif()
# Build
2024-11-20 03:48:50 +00:00
add_subdirectory(src)
# RPath
if(TARGET runtime)
set_target_properties(runtime PROPERTIES INSTALL_RPATH "$ORIGIN/../lib/native")
target_link_options(runtime PRIVATE "LINKER:--disable-new-dtags")
endif()