From b7cc27a69ad41f50f84b5f2da2dc1fbda2008db9 Mon Sep 17 00:00:00 2001 From: Malkierian Date: Sat, 17 Jan 2026 17:11:55 -0700 Subject: [PATCH] Fix appimage packaging. --- .github/workflows/main.yml | 2 -- CMakeLists.txt | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8a21fcad..e275179d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -189,8 +189,6 @@ jobs: name: Ghostship-linux path: | ghostship.appimage - config.yml - assets gamecontrollerdb.txt build-switch: diff --git a/CMakeLists.txt b/CMakeLists.txt index abd60b30..c74a973b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -649,6 +649,8 @@ add_custom_target( if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") install(FILES "${CMAKE_BINARY_DIR}/ghostship.o2r" DESTINATION . COMPONENT ${PROJECT_NAME}) + install(DIRECTORY "${CMAKE_SOURCE_DIR}/assets/" DESTINATION ./assets COMPONENT ${PROJECT_NAME}) + install(FILES "${CMAKE_BINARY_DIR}/config.yml" DESTINATION . COMPONENT ${PROJECT_NAME}) endif() if(CMAKE_SYSTEM_NAME MATCHES "Darwin")