add custom plist file
This commit is contained in:
parent
db636f9d96
commit
e161dc8010
2 changed files with 127 additions and 105 deletions
212
llcon.pro
212
llcon.pro
|
@ -1,125 +1,127 @@
|
|||
CONFIG += qt \
|
||||
thread \
|
||||
release
|
||||
thread \
|
||||
release
|
||||
|
||||
QT += network \
|
||||
xml
|
||||
xml
|
||||
|
||||
INCLUDEPATH += src \
|
||||
libs/celt
|
||||
libs/celt
|
||||
|
||||
DEFINES += USE_ALLOCA \
|
||||
_REENTRANT
|
||||
_REENTRANT
|
||||
|
||||
macx {
|
||||
HEADERS += mac/sound.h
|
||||
SOURCES += mac/sound.cpp
|
||||
RC_FILE = mac/llcon.icns
|
||||
CONFIG += x86 ppc
|
||||
HEADERS += mac/sound.h
|
||||
SOURCES += mac/sound.cpp
|
||||
RC_FILE = mac/llcon.icns
|
||||
CONFIG += x86 ppc
|
||||
|
||||
LIBS += -framework CoreFoundation \
|
||||
-framework CoreServices \
|
||||
-framework CoreAudio \
|
||||
-framework AudioToolbox \
|
||||
-framework AudioUnit
|
||||
LIBS += -framework CoreFoundation \
|
||||
-framework CoreServices \
|
||||
-framework CoreAudio \
|
||||
-framework AudioToolbox \
|
||||
-framework AudioUnit
|
||||
|
||||
QMAKE_INFO_PLIST = mac/llcon.plist
|
||||
}
|
||||
|
||||
RCC_DIR = src/res
|
||||
RESOURCES += src/resources.qrc
|
||||
|
||||
FORMS += src/llconclientdlgbase.ui \
|
||||
src/llconserverdlgbase.ui \
|
||||
src/clientsettingsdlgbase.ui \
|
||||
src/chatdlgbase.ui \
|
||||
src/aboutdlgbase.ui
|
||||
src/llconserverdlgbase.ui \
|
||||
src/clientsettingsdlgbase.ui \
|
||||
src/chatdlgbase.ui \
|
||||
src/aboutdlgbase.ui
|
||||
|
||||
HEADERS += src/buffer.h \
|
||||
src/global.h \
|
||||
src/socket.h \
|
||||
src/channel.h \
|
||||
src/util.h \
|
||||
src/client.h \
|
||||
src/server.h \
|
||||
src/settings.h \
|
||||
src/protocol.h \
|
||||
src/multicolorled.h \
|
||||
src/multicolorledbar.h \
|
||||
src/audiomixerboard.h \
|
||||
src/serverlogging.h \
|
||||
src/testbench.h \
|
||||
src/soundbase.h \
|
||||
src/llconserverdlg.h \
|
||||
src/chatdlg.h \
|
||||
src/llconclientdlg.h \
|
||||
src/clientsettingsdlg.h \
|
||||
libs/celt/ecintrin.h \
|
||||
libs/celt/celt.h \
|
||||
libs/celt/celt_types.h \
|
||||
libs/celt/celt_header.h \
|
||||
libs/celt/_kiss_fft_guts.h \
|
||||
libs/celt/arch.h \
|
||||
libs/celt/bands.h \
|
||||
libs/celt/fixed_c5x.h \
|
||||
libs/celt/fixed_c6x.h \
|
||||
libs/celt/cwrs.h \
|
||||
libs/celt/ecintrin.h \
|
||||
libs/celt/entcode.h \
|
||||
libs/celt/entdec.h \
|
||||
libs/celt/entenc.h \
|
||||
libs/celt/fixed_generic.h \
|
||||
libs/celt/float_cast.h \
|
||||
libs/celt/kfft_double.h \
|
||||
libs/celt/kfft_single.h \
|
||||
libs/celt/kiss_fft.h \
|
||||
libs/celt/kiss_fftr.h \
|
||||
libs/celt/laplace.h \
|
||||
libs/celt/mdct.h \
|
||||
libs/celt/mfrngcod.h \
|
||||
libs/celt/mathops.h \
|
||||
libs/celt/modes.h \
|
||||
libs/celt/os_support.h \
|
||||
libs/celt/pitch.h \
|
||||
libs/celt/psy.h \
|
||||
libs/celt/quant_bands.h \
|
||||
libs/celt/rate.h \
|
||||
libs/celt/stack_alloc.h \
|
||||
libs/celt/vq.h
|
||||
src/global.h \
|
||||
src/socket.h \
|
||||
src/channel.h \
|
||||
src/util.h \
|
||||
src/client.h \
|
||||
src/server.h \
|
||||
src/settings.h \
|
||||
src/protocol.h \
|
||||
src/multicolorled.h \
|
||||
src/multicolorledbar.h \
|
||||
src/audiomixerboard.h \
|
||||
src/serverlogging.h \
|
||||
src/testbench.h \
|
||||
src/soundbase.h \
|
||||
src/llconserverdlg.h \
|
||||
src/chatdlg.h \
|
||||
src/llconclientdlg.h \
|
||||
src/clientsettingsdlg.h \
|
||||
libs/celt/ecintrin.h \
|
||||
libs/celt/celt.h \
|
||||
libs/celt/celt_types.h \
|
||||
libs/celt/celt_header.h \
|
||||
libs/celt/_kiss_fft_guts.h \
|
||||
libs/celt/arch.h \
|
||||
libs/celt/bands.h \
|
||||
libs/celt/fixed_c5x.h \
|
||||
libs/celt/fixed_c6x.h \
|
||||
libs/celt/cwrs.h \
|
||||
libs/celt/ecintrin.h \
|
||||
libs/celt/entcode.h \
|
||||
libs/celt/entdec.h \
|
||||
libs/celt/entenc.h \
|
||||
libs/celt/fixed_generic.h \
|
||||
libs/celt/float_cast.h \
|
||||
libs/celt/kfft_double.h \
|
||||
libs/celt/kfft_single.h \
|
||||
libs/celt/kiss_fft.h \
|
||||
libs/celt/kiss_fftr.h \
|
||||
libs/celt/laplace.h \
|
||||
libs/celt/mdct.h \
|
||||
libs/celt/mfrngcod.h \
|
||||
libs/celt/mathops.h \
|
||||
libs/celt/modes.h \
|
||||
libs/celt/os_support.h \
|
||||
libs/celt/pitch.h \
|
||||
libs/celt/psy.h \
|
||||
libs/celt/quant_bands.h \
|
||||
libs/celt/rate.h \
|
||||
libs/celt/stack_alloc.h \
|
||||
libs/celt/vq.h
|
||||
|
||||
SOURCES += src/buffer.cpp \
|
||||
src/main.cpp \
|
||||
src/socket.cpp \
|
||||
src/channel.cpp \
|
||||
src/util.cpp \
|
||||
src/llconclientdlg.cpp \
|
||||
src/clientsettingsdlg.cpp \
|
||||
src/llconserverdlg.cpp \
|
||||
src/chatdlg.cpp \
|
||||
src/client.cpp \
|
||||
src/server.cpp \
|
||||
src/settings.cpp \
|
||||
src/protocol.cpp \
|
||||
src/multicolorled.cpp \
|
||||
src/multicolorledbar.cpp \
|
||||
src/audiomixerboard.cpp \
|
||||
src/serverlogging.cpp \
|
||||
src/soundbase.cpp \
|
||||
libs/celt/bands.c \
|
||||
libs/celt/celt.c \
|
||||
libs/celt/cwrs.c \
|
||||
libs/celt/entcode.c \
|
||||
libs/celt/entdec.c \
|
||||
libs/celt/entenc.c \
|
||||
libs/celt/header.c \
|
||||
libs/celt/kfft_single.c \
|
||||
libs/celt/_kiss_fft.c \
|
||||
libs/celt/_kiss_fftr.c \
|
||||
libs/celt/laplace.c \
|
||||
libs/celt/mdct.c \
|
||||
libs/celt/modes.c \
|
||||
libs/celt/pitch.c \
|
||||
libs/celt/psy.c \
|
||||
libs/celt/quant_bands.c \
|
||||
libs/celt/rangedec.c \
|
||||
libs/celt/rangeenc.c \
|
||||
libs/celt/rate.c \
|
||||
libs/celt/vq.c
|
||||
src/main.cpp \
|
||||
src/socket.cpp \
|
||||
src/channel.cpp \
|
||||
src/util.cpp \
|
||||
src/llconclientdlg.cpp \
|
||||
src/clientsettingsdlg.cpp \
|
||||
src/llconserverdlg.cpp \
|
||||
src/chatdlg.cpp \
|
||||
src/client.cpp \
|
||||
src/server.cpp \
|
||||
src/settings.cpp \
|
||||
src/protocol.cpp \
|
||||
src/multicolorled.cpp \
|
||||
src/multicolorledbar.cpp \
|
||||
src/audiomixerboard.cpp \
|
||||
src/serverlogging.cpp \
|
||||
src/soundbase.cpp \
|
||||
libs/celt/bands.c \
|
||||
libs/celt/celt.c \
|
||||
libs/celt/cwrs.c \
|
||||
libs/celt/entcode.c \
|
||||
libs/celt/entdec.c \
|
||||
libs/celt/entenc.c \
|
||||
libs/celt/header.c \
|
||||
libs/celt/kfft_single.c \
|
||||
libs/celt/_kiss_fft.c \
|
||||
libs/celt/_kiss_fftr.c \
|
||||
libs/celt/laplace.c \
|
||||
libs/celt/mdct.c \
|
||||
libs/celt/modes.c \
|
||||
libs/celt/pitch.c \
|
||||
libs/celt/psy.c \
|
||||
libs/celt/quant_bands.c \
|
||||
libs/celt/rangedec.c \
|
||||
libs/celt/rangeenc.c \
|
||||
libs/celt/rate.c \
|
||||
libs/celt/vq.c
|
||||
|
|
20
mac/llcon.plist
Executable file
20
mac/llcon.plist
Executable file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
|
||||
<plist version="0.9">
|
||||
<dict>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>llcon.icns</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>Created by Qt/QMake</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>llcon</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.yourcompany.llcon</string>
|
||||
<key>WorkingDirectory</key>
|
||||
<string>$APP_PACKAGE/Contents/MacOS</string>
|
||||
</dict>
|
||||
</plist>
|
Loading…
Reference in a new issue