fix: include cppbridge library in package build output

Configure CMake to output `libcppbridgeplugin.so` to the package directory and set `$ORIGIN` runtime path so that it is properly bundled and resolved when distributed as a .plasmoid zip archive.
This commit is contained in:
ruinivist
2026-05-30 20:57:01 +00:00
parent c44e9f57d2
commit 09a0252386
2 changed files with 11 additions and 2 deletions
+2 -2
View File
@@ -13,8 +13,8 @@
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/../build/cpp",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_C_COMPILER": "gcc",
"CMAKE_CXX_COMPILER": "g++",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
}