https://bugs.kde.org/show_bug.cgi?id=381667

Gabriel C <nix.or....@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nix.or....@gmail.com

--- Comment #9 from Gabriel C <nix.or....@gmail.com> ---
You could build standalone kuiserver with an small patch(es)

For that you need add a custom cmake file which sets things kuiserver needs..

eg a kuiserver/Custom.txt with something like :

set(QT_MIN_VERSION "5.7.0")
set(KF5_MIN_VERSION "5.34.0")
find_package(ECM 1.8.0 REQUIRED NO_MODULE)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})

include(KDEInstallDirs)
include(KDECMakeSettings)
include(KDECompilerSettings NO_POLICY_SCOPE)
include(ECMPackageConfigHelpers)
include(ECMMarkNonGuiExecutable)
include(CMakePackageConfigHelpers)
include(WriteBasicConfigVersionFile)
include(CheckIncludeFiles)
include(FeatureSummary)
include(ECMOptionalAddSubdirectory)
include(ECMQtDeclareLoggingCategory)
include(KDEPackageAppTemplates)


find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
                    ItemViews Notifications KIO XmlGui DBusAddons I18n Init)


( please note this is just an example after an quick loook )

then change kuiserver/CMakeLists.txt and include(Custom.txt) as first line.


Now cd kuiserver && mkdirp -p my_build && cd my_build && cmake ..

Ofc this is just an _workaround_ for you so you can test things..

Regards

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to