Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Oliver Behnke
fidelity
Commits
df0e5efe
Commit
df0e5efe
authored
Nov 10, 2009
by
Oliver Bock
Browse files
Added preliminary application bundle support on Mac OS
parent
18fe3576
Changes
15
Hide whitespace changes
Inline
Side-by-side
common/common.pro
View file @
df0e5efe
...
...
@@ -31,6 +31,10 @@ TARGET = fidelitycommon
win32
{
DESTDIR
=
..
/
bin
}
mac
{
DESTDIR
=
..
/
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
QMAKE_LFLAGS_SONAME
=
-
Wl
,
-
install_name
,
@
executable_path
/../
Frameworks
/
}
else
{
DESTDIR
=
..
/
bin
/
libs
}
...
...
engine/engine.pro
View file @
df0e5efe
...
...
@@ -58,6 +58,11 @@ win32 {
DESTDIR
=
..
/
bin
LIBS
+=
-
L
..
/
bin
}
mac
{
DESTDIR
=
..
/
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
LIBS
+=
-
L
..
/
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
QMAKE_LFLAGS_SONAME
=
-
Wl
,
-
install_name
,
@
executable_path
/../
Frameworks
/
}
else
{
DESTDIR
=
..
/
bin
/
libs
LIBS
+=
-
L
..
/
bin
/
libs
...
...
gui/gui.pro
View file @
df0e5efe
#########################################################################
#########################################################################
#
Copyright
(
C
)
2007
by
Oliver
Bock
#
#
bock
@
tfh
-
berlin
.
de
#
#
#
...
...
@@ -62,7 +62,12 @@ RESOURCES += MainWindow.qrc
DESTDIR
=
..
/
bin
TARGET
=
fidelity
mac
{
TARGET
=
Fidelity
}
else
{
TARGET
=
fidelity
}
INCLUDEPATH
+=
..
/
plugins
/
base
\
..
/
plugins
/
components
/
base
\
...
...
@@ -71,6 +76,9 @@ INCLUDEPATH += ../plugins/base \
win32
{
LIBS
+=
-
L
..
/
bin
}
mac
{
LIBS
+=
-
L
..
/
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
}
else
{
LIBS
+=
-
L
..
/
bin
/
libs
}
...
...
plugins/base/base.pro
View file @
df0e5efe
...
...
@@ -37,6 +37,10 @@ APluginFactory.h
win32
{
DESTDIR
=
..
/../
bin
}
mac
{
DESTDIR
=
..
/../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
QMAKE_LFLAGS_SONAME
=
-
Wl
,
-
install_name
,
@
executable_path
/../
Frameworks
/
}
else
{
DESTDIR
=
..
/../
bin
/
libs
}
...
...
plugins/components/base/base.pro
View file @
df0e5efe
...
...
@@ -62,6 +62,11 @@ win32 {
DESTDIR
=
..
/../../
bin
LIBS
+=
-
L
..
/../../
bin
}
mac
{
DESTDIR
=
..
/../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
LIBS
+=
-
L
..
/../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
QMAKE_LFLAGS_SONAME
=
-
Wl
,
-
install_name
,
@
executable_path
/../
Frameworks
/
}
else
{
DESTDIR
=
..
/../../
bin
/
libs
LIBS
+=
-
L
..
/../../
bin
/
libs
...
...
plugins/components/library/beamsplitter/beamsplitter.pro
View file @
df0e5efe
...
...
@@ -46,6 +46,9 @@ INCLUDEPATH += ../../../base \
win32
{
LIBS
+=
-
L
..
/../../../
bin
}
mac
{
LIBS
+=
-
L
..
/../../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
}
else
{
LIBS
+=
-
L
..
/../../../
bin
/
libs
}
...
...
plugins/components/library/datastorage/datastorage.pro
View file @
df0e5efe
...
...
@@ -124,6 +124,9 @@ INCLUDEPATH += ../../../../votable \
win32
{
LIBS
+=
-
L
..
/../../../
bin
}
mac
{
LIBS
+=
-
L
..
/../../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
}
else
{
LIBS
+=
-
L
..
/../../../
bin
/
libs
}
...
...
plugins/components/library/fabryperotcavity/fabryperotcavity.pro
View file @
df0e5efe
...
...
@@ -46,6 +46,9 @@ INCLUDEPATH += ../../../base \
win32
{
LIBS
+=
-
L
..
/../../../
bin
}
mac
{
LIBS
+=
-
L
..
/../../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
}
else
{
LIBS
+=
-
L
..
/../../../
bin
/
libs
}
...
...
plugins/components/library/laser/laser.pro
View file @
df0e5efe
...
...
@@ -46,6 +46,9 @@ INCLUDEPATH += ../../../base \
win32
{
LIBS
+=
-
L
..
/../../../
bin
}
mac
{
LIBS
+=
-
L
..
/../../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
}
else
{
LIBS
+=
-
L
..
/../../../
bin
/
libs
}
...
...
plugins/components/library/mirror/mirror.pro
View file @
df0e5efe
...
...
@@ -46,6 +46,9 @@ INCLUDEPATH += ../../../base \
win32
{
LIBS
+=
-
L
..
/../../../
bin
}
mac
{
LIBS
+=
-
L
..
/../../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
}
else
{
LIBS
+=
-
L
..
/../../../
bin
/
libs
}
...
...
plugins/components/library/photodetector/photodetector.pro
View file @
df0e5efe
...
...
@@ -46,6 +46,9 @@ INCLUDEPATH += ../../../base \
win32
{
LIBS
+=
-
L
..
/../../../
bin
}
mac
{
LIBS
+=
-
L
..
/../../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
}
else
{
LIBS
+=
-
L
..
/../../../
bin
/
libs
}
...
...
plugins/components/library/signalsaw/signalsaw.pro
View file @
df0e5efe
...
...
@@ -46,6 +46,9 @@ INCLUDEPATH += ../../../base \
win32
{
LIBS
+=
-
L
..
/../../../
bin
}
mac
{
LIBS
+=
-
L
..
/../../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
}
else
{
LIBS
+=
-
L
..
/../../../
bin
/
libs
}
...
...
plugins/components/library/signalsine/signalsine.pro
View file @
df0e5efe
...
...
@@ -46,9 +46,12 @@ INCLUDEPATH += ../../../base \
win32
{
LIBS
+=
-
L
..
/../../../
bin
}
mac
{
LIBS
+=
-
L
..
/../../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
}
else
{
LIBS
+=
-
L
..
/../../../
bin
/
libs
}
LIBS
+=
-
lfidelitycomponentbase
\
-
lfidelitypluginbase
\ No newline at end of file
-
lfidelitypluginbase
plugins/components/library/space/space.pro
View file @
df0e5efe
...
...
@@ -46,6 +46,9 @@ INCLUDEPATH += ../../../base \
win32
{
LIBS
+=
-
L
..
/../../../
bin
}
mac
{
LIBS
+=
-
L
..
/../../../
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
}
else
{
LIBS
+=
-
L
..
/../../../
bin
/
libs
}
...
...
votable/votable.pro
View file @
df0e5efe
...
...
@@ -32,6 +32,10 @@ TARGET = fidelityvotable
win32
{
DESTDIR
=
..
/
bin
}
mac
{
DESTDIR
=
..
/
bin
/
Fidelity
.
app
/
Contents
/
Frameworks
QMAKE_LFLAGS_SONAME
=
-
Wl
,
-
install_name
,
@
executable_path
/../
Frameworks
/
}
else
{
DESTDIR
=
..
/
bin
/
libs
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment