Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
feat(smileys): allow compiling qTox with minimal or no smileys
Browse files Browse the repository at this point in the history
compiling only minimal smileys or no smilies reduces output binary size
and resource usage during compilation
  • Loading branch information
sudden6 committed Oct 1, 2016
1 parent abaa41e commit ae76910
Show file tree
Hide file tree
Showing 3 changed files with 1,847 additions and 1,837 deletions.
10 changes: 8 additions & 2 deletions qtox.pro
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,14 @@ macx {
LIBPATH += /usr/local/lib
}

RESOURCES += res.qrc \
smileys/smileys.qrc
RESOURCES += res.qrc

!contains(SMILEYS, NO) {
RESOURCES += smileys/emojione.qrc
!contains(SMILEYS, MIN) {
RESOURCES += smileys/smileys.qrc
}
}

HEADERS += \
src/friend.h \
Expand Down
Loading

0 comments on commit ae76910

Please sign in to comment.