a9da643fb2
Fixes issue 144
15 lines
361 B
Plaintext
15 lines
361 B
Plaintext
# A custom install path prefix can be provided by passing PREFIX=/absolute/path
|
|
# to qmake; if one is not provided, we use the below defaults -
|
|
isEmpty(PREFIX) {
|
|
unix:PREFIX = "/usr/local/"
|
|
macx:PREFIX = "/Applications/"
|
|
win32:PREFIX = "../"
|
|
}
|
|
macx {
|
|
target.path = $$PREFIX/Ostinato
|
|
} else {
|
|
target.path = $$PREFIX/bin
|
|
}
|
|
|
|
INSTALLS += target
|