From f2dab07870ead41c56e5f719ce3892e0ed7c1afd Mon Sep 17 00:00:00 2001 From: IChooseYou Date: Sun, 15 Feb 2026 13:45:36 -0700 Subject: [PATCH] fix: build ProcessMemory plugin on Linux, include Plugins in AppImage --- .github/workflows/build.yml | 1 + CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5d5bbdf..37383c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -130,6 +130,7 @@ jobs: cp build/Reclass AppDir/usr/bin/ cp build/ReclassMcpBridge AppDir/usr/bin/ cp -r build/themes AppDir/usr/bin/ 2>/dev/null || true + cp -r build/Plugins AppDir/usr/bin/ 2>/dev/null || true cp src/icons/class.png AppDir/usr/share/icons/hicolor/256x256/apps/reclass.png # Create AppImage with Qt libs bundled diff --git a/CMakeLists.txt b/CMakeLists.txt index 3eb0fac..6bada57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -297,7 +297,7 @@ if(BUILD_TESTING) ) endif() endif() +add_subdirectory(plugins/ProcessMemory) if(WIN32) - add_subdirectory(plugins/ProcessMemory) add_subdirectory(plugins/WinDbgMemory) endif()