vanadium: move overlays up a level

This commit is contained in:
Primrose 2025-05-26 09:00:12 +02:00
parent b01142d84f
commit 5a3d2089ad
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
5 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,45 @@
diff --git a/src/modules/clipboard/CMakeLists.txt b/src/modules/clipboard/CMakeLists.txt
index 997c4e3e..4163cada 100644
--- a/src/modules/clipboard/CMakeLists.txt
+++ b/src/modules/clipboard/CMakeLists.txt
@@ -1,21 +1,21 @@
-add_fcitx5_addon(clipboard)
-
-target_sources(clipboard PRIVATE clipboard.cpp)
-target_link_libraries(clipboard Fcitx5::Core)
-
-if (ENABLE_X11)
- target_sources(clipboard PRIVATE xcbclipboard.cpp)
- target_link_libraries(clipboard Fcitx5::Module::XCB XCB::XCB)
-endif()
-
-if (WAYLAND_FOUND)
- target_sources(clipboard PRIVATE waylandclipboard.cpp)
- target_link_libraries(clipboard Fcitx5::Module::Wayland Fcitx5::Wayland::WLRDataControl Pthread::Pthread)
-endif()
-
-install(TARGETS clipboard DESTINATION "${FCITX_INSTALL_ADDONDIR}")
-install(FILES "${CMAKE_CURRENT_BINARY_DIR}/clipboard.conf" DESTINATION "${FCITX_INSTALL_PKGDATADIR}/addon"
- COMPONENT config)
+# add_fcitx5_addon(clipboard)
+#
+# target_sources(clipboard PRIVATE clipboard.cpp)
+# target_link_libraries(clipboard Fcitx5::Core)
+#
+# if (ENABLE_X11)
+# target_sources(clipboard PRIVATE xcbclipboard.cpp)
+# target_link_libraries(clipboard Fcitx5::Module::XCB XCB::XCB)
+# endif()
+#
+# if (WAYLAND_FOUND)
+# target_sources(clipboard PRIVATE waylandclipboard.cpp)
+# target_link_libraries(clipboard Fcitx5::Module::Wayland Fcitx5::Wayland::WLRDataControl Pthread::Pthread)
+# endif()
+#
+# install(TARGETS clipboard DESTINATION "${FCITX_INSTALL_ADDONDIR}")
+# install(FILES "${CMAKE_CURRENT_BINARY_DIR}/clipboard.conf" DESTINATION "${FCITX_INSTALL_PKGDATADIR}/addon"
+# COMPONENT config)
configure_file(clipboard.conf.in.in clipboard.conf.in @ONLY)
fcitx5_translate_desktop_file(${CMAKE_CURRENT_BINARY_DIR}/clipboard.conf.in clipboard.conf)
fcitx5_export_module(Clipboard TARGET clipboard BUILD_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_SOURCE_DIR}" HEADERS clipboard_public.h INSTALL)