From 248e1af3f1627a5326eb16078c3d7de548dc316b Mon Sep 17 00:00:00 2001 From: Michael Ankele Date: Thu, 3 Oct 2024 22:29:13 +0200 Subject: [PATCH] [xmake] cmake fix: plugin install directory --- CMakeLists.txt | 2 +- xmake.conf | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd2b39fa7..c9c7943b7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -836,7 +836,7 @@ install(FILES "static/favorites_demo.txt" DESTINATION share/tsunami) install(FILES "static/hui_resources.txt" DESTINATION share/tsunami) install(FILES "static/license.txt" DESTINATION share/tsunami) install(FILES "static/license_small.txt" DESTINATION share/tsunami) -install(DIRECTORY "plugins/" DESTINATION share/tsunami) +install(DIRECTORY "plugins" DESTINATION share/tsunami) # install .desktop file set(INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") diff --git a/xmake.conf b/xmake.conf index cbfee0e18..70731bddc 100644 --- a/xmake.conf +++ b/xmake.conf @@ -16,4 +16,5 @@ desktop-file = static/michisoft-tsunami.desktop mime-files = static/michisoft-nami.xml icons = ["static/icons/32.png:32:application-michisoft-nami", "static/icons/48.png:48:application-michisoft-nami", "static/icons/64.png:64:application-michisoft-nami", "static/icons/128.png:128:application-michisoft-nami"] - additional = plugins/ + additional = plugins +