mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 13:15:43 +08:00
37 lines
765 B
Prolog
37 lines
765 B
Prolog
TARGET = AdvancedDockingSystem
|
|
|
|
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += staticlib
|
|
|
|
INCLUDEPATH += $$PWD/src
|
|
INCLUDEPATH += $$PWD/include
|
|
|
|
QMAKE_CXXFLAGS += -std=c++11
|
|
|
|
SOURCES += \
|
|
src/API.cpp \
|
|
src/ContainerWidget.cpp \
|
|
src/SectionWidget.cpp \
|
|
src/SectionContent.cpp \
|
|
src/SectionTitleWidget.cpp \
|
|
src/SectionContentWidget.cpp \
|
|
src/DropOverlay.cpp \
|
|
src/FloatingWidget.cpp
|
|
|
|
HEADERS += \
|
|
include/ads/API.h \
|
|
include/ads/ContainerWidget.h \
|
|
include/ads/SectionWidget.h \
|
|
include/ads/SectionContent.h \
|
|
include/ads/SectionTitleWidget.h \
|
|
include/ads/SectionContentWidget.h \
|
|
include/ads/DropOverlay.h \
|
|
include/ads/FloatingWidget.h
|
|
|
|
RESOURCES += \
|
|
res/ads.qrc
|