GrabBag/Device/LedDisplayDevice/LedDisplayDevice.pro
2026-07-11 15:49:14 +08:00

31 lines
445 B
Prolog

TEMPLATE = lib
CONFIG += staticlib
CONFIG += c++17
CONFIG -= qt
TARGET = LedDisplayDevice
win32-msvc {
QMAKE_CXXFLAGS += /utf-8
}
INCLUDEPATH += ./Inc
INCLUDEPATH += ./_Inc
INCLUDEPATH += ../../Utils/VrUtils/Inc
win32 {
LIBS += -lws2_32
}
SOURCES += \
Src/LedDisplayDevice.cpp
HEADERS += \
Inc/ILedDisplayDevice.h \
_Inc/LedDisplayDevice.h
unix {
target.path = /usr/lib
}
!isEmpty(target.path): INSTALLS += target