mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-13 23:17:09 +00:00
61 lines
1.6 KiB
Prolog
61 lines
1.6 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2018-05-05T17:41:00
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT -= core gui
|
|
|
|
TARGET = moonlight-common-c
|
|
TEMPLATE = lib
|
|
|
|
win32 {
|
|
INCLUDEPATH += $$PWD/../libs/windows/include
|
|
}
|
|
macx {
|
|
INCLUDEPATH += $$PWD/../libs/mac/include
|
|
}
|
|
unix:!macx {
|
|
CONFIG += link_pkgconfig
|
|
PKGCONFIG += openssl
|
|
}
|
|
|
|
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/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/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
|
|
CONFIG += warn_off staticlib
|
|
DEFINES += HAS_SOCKLEN_T
|