-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add qtxdg-tools as a dependency (#428)
Needs lxqt/qtxdg-tools#2 Part of qtxdg split. See lxqt/lxqt#2139
- Loading branch information
Chih-Hsuan Yen
authored
May 2, 2022
1 parent
db2bf51
commit 4cc903f
Showing
2 changed files
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ option(WITH_LIBUDEV "Build with libudev support" ON) | |
# Minimum Versions | ||
set(KF5_MINIMUM_VERSION "5.36.0") | ||
set(LXQT_MINIMUM_VERSION "1.1.0") | ||
set(QTXDG_MINIMUM_VERSION "3.9.0") | ||
set(QT_MINIMUM_VERSION "5.15.0") | ||
|
||
find_package(Qt5DBus ${QT_MINIMUM_VERSION} REQUIRED) | ||
|
@@ -29,6 +30,7 @@ find_package(Qt5Widgets ${QT_MINIMUM_VERSION} REQUIRED) | |
find_package(Qt5X11Extras ${QT_MINIMUM_VERSION} REQUIRED) | ||
find_package(KF5WindowSystem ${KF5_MINIMUM_VERSION} REQUIRED) | ||
find_package(lxqt ${LXQT_MINIMUM_VERSION} REQUIRED) | ||
find_package(qtxdg-tools ${QTXDG_MINIMUM_VERSION} REQUIRED) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
yan12125
Member
|
||
find_package(X11 REQUIRED) | ||
message(STATUS "Building with Qt${Qt5Core_VERSION}") | ||
find_package(PkgConfig REQUIRED) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If it's a runtime dependency (as stated bellow), why is it required during the build time?