-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAgaveExplorer.pri
More file actions
37 lines (29 loc) · 1 KB
/
AgaveExplorer.pri
File metadata and controls
37 lines (29 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
NEEDED_REPO=AgaveClientInterface
NEEDED_PRI=$$PWD/../$$NEEDED_REPO/"$$NEEDED_REPO".pri
!exists( $$NEEDED_PRI ) {
message("Needed Git repo $$NEEDED_REPO not found. This project requires $$NEEDED_REPO from https://github.com/NHERI-SimCenter.")
}
include($$NEEDED_PRI)
INCLUDEPATH += "$$PWD/"
SOURCES += \
$$PWD/utilFuncs/agavesetupdriver.cpp \
$$PWD/utilFuncs/authform.cpp \
$$PWD/utilFuncs/copyrightdialog.cpp \
$$PWD/utilFuncs/singlelinedialog.cpp \
$$PWD/ae_globals.cpp \
$$PWD/commonUI/FooterWidget.cpp \
$$PWD/commonUI/HeaderWidget.cpp
HEADERS += \
$$PWD/utilFuncs/agavesetupdriver.h \
$$PWD/utilFuncs/authform.h \
$$PWD/utilFuncs/copyrightdialog.h \
$$PWD/utilFuncs/singlelinedialog.h \
$$PWD/ae_globals.h \
$$PWD/commonUI/FooterWidget.h \
$$PWD/commonUI/HeaderWidget.h
FORMS += \
$$PWD/utilFuncs/authform.ui \
$$PWD/utilFuncs/copyrightdialog.ui \
$$PWD/utilFuncs/singlelinedialog.ui
RESOURCES += \
$$PWD/commonUI/commonResources.qrc \