mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 13:15:43 +08:00
36 lines
750 B
Prolog
36 lines
750 B
Prolog
TARGET = AdvancedDockingSystem
|
|
|
|
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += staticlib
|
|
|
|
INCLUDEPATH += $$PWD/src
|
|
|
|
QMAKE_CXXFLAGS += -std=c++11
|
|
|
|
SOURCES += \
|
|
src/ads/section_content.cpp \
|
|
src/ads/ads.cpp \
|
|
src/ads/section_widget.cpp \
|
|
src/ads/section_title_widget.cpp \
|
|
src/ads/container_widget.cpp \
|
|
src/ads/drop_overlay.cpp \
|
|
src/ads/floating_widget.cpp \
|
|
src/ads/section_content_widget.cpp
|
|
|
|
HEADERS += \
|
|
src/ads/ads.h \
|
|
src/ads/container_widget.h \
|
|
src/ads/section_widget.h \
|
|
src/ads/section_content.h \
|
|
src/ads/section_title_widget.h \
|
|
src/ads/section_content_widget.h \
|
|
src/ads/drop_overlay.h \
|
|
src/ads/floating_widget.h
|
|
|
|
RESOURCES += \
|
|
res/ads.qrc
|