From 8b867ac4e212eca4ae10dc86be601297b0113921 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 26 Nov 2020 20:03:37 +0100 Subject: [PATCH] Fixed a CMake issue with the runtime path. --- es-app/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/es-app/CMakeLists.txt b/es-app/CMakeLists.txt index 1e3da0b1f..b39be3476 100644 --- a/es-app/CMakeLists.txt +++ b/es-app/CMakeLists.txt @@ -108,6 +108,7 @@ else() include_directories(${COMMON_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR}/src) add_executable(emulationstation ${ES_SOURCES} ${ES_HEADERS}) target_link_libraries(emulationstation ${COMMON_LIBRARIES} es-core) + set_target_properties(emulationstation PROPERTIES INSTALL_RPATH_USE_LINK_PATH TRUE) endif() # Setup for installation and package generation.