mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
4f394ddf5e
- Removes obsolete code
45 lines
831 B
Prolog
45 lines
831 B
Prolog
TARGET = AdvancedDockingSystem
|
|
|
|
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += staticlib
|
|
|
|
INCLUDEPATH += $$PWD/src
|
|
INCLUDEPATH += $$PWD/include
|
|
|
|
windows {
|
|
# MinGW
|
|
*-g++* {
|
|
QMAKE_CXXFLAGS += -std=c++11
|
|
}
|
|
# MSVC
|
|
*-msvc* {
|
|
}
|
|
}
|
|
|
|
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
|