mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Introduce server build types 'standalone' and 'bundled'
This commit is contained in:
parent
4113d87815
commit
315063ba24
@ -131,7 +131,16 @@ DATADIR = $$PREFIX/share
|
|||||||
DEFINES += "LIBDIR=\\\"$$LIBDIR\\\"" "DATADIR=\\\"$$DATADIR\\\"" "BINDIR=\\\"$$BINDIR\\\""
|
DEFINES += "LIBDIR=\\\"$$LIBDIR\\\"" "DATADIR=\\\"$$DATADIR\\\"" "BINDIR=\\\"$$BINDIR\\\""
|
||||||
|
|
||||||
#MAKE INSTALL
|
#MAKE INSTALL
|
||||||
INSTALLS += bin #server #translation #manpage
|
CONFIG(server_standalone) {
|
||||||
|
INSTALLS += bin server translation manpage
|
||||||
|
}
|
||||||
|
else:CONFIG(server_bundled) {
|
||||||
|
INSTALLS += bin
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
message(No build type specified. Defaulting to standalone server build.)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
bin.path = $$BINDIR
|
bin.path = $$BINDIR
|
||||||
isEmpty(DESTDIR) {
|
isEmpty(DESTDIR) {
|
||||||
|
Loading…
Reference in New Issue
Block a user