mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -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\\\""
|
||||
|
||||
#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
|
||||
isEmpty(DESTDIR) {
|
||||
|
Loading…
Reference in New Issue
Block a user