-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Note: submodule is needed for icon support!
- Loading branch information
Showing
7 changed files
with
71 additions
and
98 deletions.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "fm/bundle"] | ||
path = fm/bundle | ||
url = https://github.com/rodlie/adwaita-bundle |
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
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
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
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
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 |
---|---|---|
@@ -1,17 +1,19 @@ | ||
TEMPLATE = subdirs | ||
CONFIG -= ordered | ||
SUBDIRS += libfm libdisks fm | ||
SUBDIRS += libfm fm | ||
fm.depends += libfm | ||
|
||
CONFIG(basic) { | ||
CONFIG += no_udisks no_tray | ||
unix:!macx { | ||
SUBDIRS += libdisks | ||
CONFIG(basic) { | ||
CONFIG += no_udisks no_tray no_dbus | ||
} | ||
!CONFIG(no_udisks) { | ||
fm.depends += libdisks | ||
} | ||
!CONFIG(no_tray) { | ||
SUBDIRS += tray | ||
tray.depends += libdisks libfm | ||
} | ||
} | ||
!CONFIG(no_udisks) { | ||
fm.depends += libdisks | ||
} | ||
!CONFIG(no_tray) { | ||
SUBDIRS += tray | ||
tray.depends += libdisks libfm | ||
} | ||
|
||
lessThan(QT_MAJOR_VERSION, 5): warning("Qt4 is deprecated, please consider upgrading to Qt5 if possible.") |