vdr-streamdev-client/vlc-vdr.pro

31 lines
517 B
Prolog
Raw Normal View History

2025-02-15 07:43:27 +01:00
QT += \
core \
gui \
widgets \
network
2025-02-15 07:30:59 +01:00
2025-02-15 07:44:13 +01:00
QMAKE_CFLAGS_RELEASE += -Os -momit-leaf-frame-pointer
QMAKE_LFLAGS += -static -static-libgcc
2025-02-15 07:43:27 +01:00
CONFIG += \
c++11 \
static
2025-02-15 07:30:59 +01:00
2025-02-15 07:44:13 +01:00
DEFINES += \
VLC_STATICLIB \
QT_STATIC_BUILD
2025-02-15 07:43:27 +01:00
LIBS += \
2025-02-15 07:44:13 +01:00
-lvlc.dll
2025-02-15 07:30:59 +01:00
2025-02-15 07:43:27 +01:00
SOURCES += \
main.cpp \
player_gui.cpp
2025-02-15 07:30:59 +01:00
2025-02-15 07:43:27 +01:00
HEADERS += \
player_gui.h
2025-02-15 07:32:07 +01:00
2025-02-15 07:43:27 +01:00
FORMS += \
player_gui.ui