mirror of
https://gitlab.com/eql/EQL5.git
synced 2026-01-16 06:10:45 -08:00
make 'make install' work again on macOS
This commit is contained in:
parent
a7a0af1e86
commit
ae674491e1
10 changed files with 93 additions and 21 deletions
|
|
@ -9,7 +9,15 @@ OBJECTS_DIR = ./tmp/
|
|||
MOC_DIR = ./tmp/
|
||||
|
||||
QMAKE_RPATHDIR = /usr/lib
|
||||
target.path = /usr/bin
|
||||
|
||||
linux {
|
||||
target.path = /usr/bin
|
||||
}
|
||||
|
||||
osx {
|
||||
target.path = /usr/local/bin
|
||||
}
|
||||
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
|
|
|
|||
|
|
@ -10,9 +10,18 @@ OBJECTS_DIR = ./tmp/
|
|||
MOC_DIR = ./tmp/
|
||||
|
||||
include.files = eql5/*
|
||||
include.path = /usr/include/eql5
|
||||
target.path = /usr/lib
|
||||
INSTALLS = include target
|
||||
|
||||
linux {
|
||||
include.path = /usr/include/eql5
|
||||
target.path = /usr/lib
|
||||
}
|
||||
|
||||
osx {
|
||||
include.path = /usr/local/include/eql5
|
||||
target.path = /usr/local/lib
|
||||
}
|
||||
|
||||
INSTALLS = include target
|
||||
|
||||
msvc {
|
||||
PRE_TARGETDEPS += ini_eql5.lib
|
||||
|
|
|
|||
|
|
@ -8,8 +8,15 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/help/
|
||||
MOC_DIR = ./tmp/help/
|
||||
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
linux {
|
||||
target.path = /usr/lib
|
||||
}
|
||||
|
||||
osx {
|
||||
target.path = /usr/local/lib
|
||||
}
|
||||
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
include(windows.pri)
|
||||
|
|
|
|||
|
|
@ -8,8 +8,15 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/multimedia/
|
||||
MOC_DIR = ./tmp/multimedia/
|
||||
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
linux {
|
||||
target.path = /usr/lib
|
||||
}
|
||||
|
||||
osx {
|
||||
target.path = /usr/local/lib
|
||||
}
|
||||
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
include(windows.pri)
|
||||
|
|
|
|||
|
|
@ -8,8 +8,15 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/network/
|
||||
MOC_DIR = ./tmp/network/
|
||||
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
linux {
|
||||
target.path = /usr/lib
|
||||
}
|
||||
|
||||
osx {
|
||||
target.path = /usr/local/lib
|
||||
}
|
||||
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
include(windows.pri)
|
||||
|
|
|
|||
|
|
@ -8,8 +8,15 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/quick/
|
||||
MOC_DIR = ./tmp/quick/
|
||||
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
linux {
|
||||
target.path = /usr/lib
|
||||
}
|
||||
|
||||
osx {
|
||||
target.path = /usr/local/lib
|
||||
}
|
||||
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
include(windows.pri)
|
||||
|
|
|
|||
|
|
@ -8,8 +8,15 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/sql/
|
||||
MOC_DIR = ./tmp/sql/
|
||||
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
linux {
|
||||
target.path = /usr/lib
|
||||
}
|
||||
|
||||
osx {
|
||||
target.path = /usr/local/lib
|
||||
}
|
||||
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
include(windows.pri)
|
||||
|
|
|
|||
|
|
@ -8,8 +8,15 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/svg/
|
||||
MOC_DIR = ./tmp/svg/
|
||||
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
linux {
|
||||
target.path = /usr/lib
|
||||
}
|
||||
|
||||
osx {
|
||||
target.path = /usr/local/lib
|
||||
}
|
||||
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
include(windows.pri)
|
||||
|
|
|
|||
|
|
@ -8,8 +8,15 @@ DESTDIR = ../
|
|||
OBJECTS_DIR = ./tmp/webengine/
|
||||
MOC_DIR = ./tmp/webengine/
|
||||
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
linux {
|
||||
target.path = /usr/lib
|
||||
}
|
||||
|
||||
osx {
|
||||
target.path = /usr/local/lib
|
||||
}
|
||||
|
||||
INSTALLS = target
|
||||
|
||||
macx:QT += network
|
||||
|
||||
|
|
|
|||
|
|
@ -7,11 +7,17 @@ TARGET = eql5_webkit
|
|||
DESTDIR = ../
|
||||
OBJECTS_DIR = ./tmp/webkit/
|
||||
MOC_DIR = ./tmp/webkit/
|
||||
macx:QT += network
|
||||
|
||||
target.path = /usr/lib
|
||||
INSTALLS = target
|
||||
linux {
|
||||
target.path = /usr/lib
|
||||
}
|
||||
|
||||
macx:QT += network
|
||||
osx {
|
||||
target.path = /usr/local/lib
|
||||
}
|
||||
|
||||
INSTALLS = target
|
||||
|
||||
win32 {
|
||||
include(windows.pri)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue