try to make Travis happy again
This commit is contained in:
parent
99c5fd04bc
commit
f1177d42df
3 changed files with 9 additions and 3 deletions
|
@ -31,7 +31,7 @@ matrix:
|
|||
- brew install qt5
|
||||
- brew link qt5 --force
|
||||
script:
|
||||
- qmake -spec macx-xcode Jamulus.pro
|
||||
- qmake "CONFIG+=istravis" -spec macx-xcode Jamulus.pro
|
||||
- xcodebuild -list -project Jamulus.xcodeproj
|
||||
- xcodebuild -scheme Jamulus build
|
||||
#deploy function is only available in travis-ci.com (not free) but not in travis-ci.org (free)
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
TODO improve audio drop out behaviour with OPUS64 by tuning the coding rate (it seems that for some coding rates we get loud artifacts
|
||||
on audio drop outs whereas for slightly different rates the behavior is much more pleasent)
|
||||
|
||||
TODO support internationalization
|
||||
|
||||
TODO try to find a way to catch Windows exceptions in case a 64 bit Jamulus tries to load a 32 bit Jack Audio ASIO dll
|
||||
|
||||
|
||||
|
|
|
@ -14,6 +14,8 @@ QT += widgets \
|
|||
network \
|
||||
xml
|
||||
|
||||
#TRANSLATIONS = src/res/translation_de.ts
|
||||
|
||||
INCLUDEPATH += src
|
||||
|
||||
INCLUDEPATH_OPUS = libs/opus/include \
|
||||
|
@ -78,8 +80,10 @@ win32 {
|
|||
SOURCES += mac/sound.cpp
|
||||
RC_FILE = mac/mainicon.icns
|
||||
CONFIG += x86
|
||||
QMAKE_INFO_PLIST = mac/Info.plist
|
||||
QMAKE_TARGET_BUNDLE_PREFIX = net.sourceforge.llcon
|
||||
!contains(CONFIG, "istravis") {
|
||||
QMAKE_INFO_PLIST = mac/Info.plist
|
||||
QMAKE_TARGET_BUNDLE_PREFIX = net.sourceforge.llcon
|
||||
}
|
||||
|
||||
LIBS += -framework CoreFoundation \
|
||||
-framework CoreServices \
|
||||
|
|
Loading…
Reference in a new issue