mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 13:44:17 +00:00
82 lines
2 KiB
Prolog
82 lines
2 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2018-05-05T17:41:00
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT -= core gui
|
|
|
|
TARGET = moonlight-common-c
|
|
TEMPLATE = lib
|
|
|
|
# Build a static library
|
|
CONFIG += staticlib
|
|
|
|
# Disable warnings
|
|
CONFIG += warn_off
|
|
|
|
# Include global qmake defs
|
|
include(../globaldefs.pri)
|
|
|
|
win32 {
|
|
INCLUDEPATH += $$PWD/../libs/windows/include
|
|
}
|
|
macx {
|
|
INCLUDEPATH += $$PWD/../libs/mac/include
|
|
}
|
|
unix:!macx {
|
|
CONFIG += link_pkgconfig
|
|
PKGCONFIG += openssl
|
|
DEFINES += HAVE_CLOCK_GETTIME=1
|
|
}
|
|
|
|
COMMON_C_DIR = $$PWD/moonlight-common-c
|
|
ENET_DIR = $$COMMON_C_DIR/enet
|
|
RS_DIR = $$COMMON_C_DIR/reedsolomon
|
|
SOURCES += \
|
|
$$RS_DIR/rs.c \
|
|
$$ENET_DIR/callbacks.c \
|
|
$$ENET_DIR/compress.c \
|
|
$$ENET_DIR/host.c \
|
|
$$ENET_DIR/list.c \
|
|
$$ENET_DIR/packet.c \
|
|
$$ENET_DIR/peer.c \
|
|
$$ENET_DIR/protocol.c \
|
|
$$ENET_DIR/unix.c \
|
|
$$ENET_DIR/win32.c \
|
|
$$COMMON_C_DIR/src/AudioStream.c \
|
|
$$COMMON_C_DIR/src/ByteBuffer.c \
|
|
$$COMMON_C_DIR/src/Connection.c \
|
|
$$COMMON_C_DIR/src/ConnectionTester.c \
|
|
$$COMMON_C_DIR/src/ControlStream.c \
|
|
$$COMMON_C_DIR/src/FakeCallbacks.c \
|
|
$$COMMON_C_DIR/src/InputStream.c \
|
|
$$COMMON_C_DIR/src/LinkedBlockingQueue.c \
|
|
$$COMMON_C_DIR/src/Misc.c \
|
|
$$COMMON_C_DIR/src/Platform.c \
|
|
$$COMMON_C_DIR/src/PlatformSockets.c \
|
|
$$COMMON_C_DIR/src/RtpFecQueue.c \
|
|
$$COMMON_C_DIR/src/RtpReorderQueue.c \
|
|
$$COMMON_C_DIR/src/RtspConnection.c \
|
|
$$COMMON_C_DIR/src/RtspParser.c \
|
|
$$COMMON_C_DIR/src/SdpGenerator.c \
|
|
$$COMMON_C_DIR/src/SimpleStun.c \
|
|
$$COMMON_C_DIR/src/VideoDepacketizer.c \
|
|
$$COMMON_C_DIR/src/VideoStream.c
|
|
HEADERS += \
|
|
$$COMMON_C_DIR/src/Limelight.h
|
|
INCLUDEPATH += \
|
|
$$RS_DIR \
|
|
$$ENET_DIR/include \
|
|
$$COMMON_C_DIR/src
|
|
DEFINES += HAS_SOCKLEN_T
|
|
|
|
CONFIG(debug, debug|release) {
|
|
# Enable asserts on debug builds
|
|
DEFINES += LC_DEBUG
|
|
}
|
|
|
|
# Older GCC versions defaulted to GNU89
|
|
*-g++ {
|
|
QMAKE_CFLAGS += -std=gnu99
|
|
}
|