-
-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy pathpgmodeler-se.pro
More file actions
41 lines (31 loc) · 1023 Bytes
/
pgmodeler-se.pro
File metadata and controls
41 lines (31 loc) · 1023 Bytes
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
38
39
40
41
include(../apps.pri)
TEMPLATE = app
TARGET = pgmodeler-se
isEqual(PRIVATE_PLUGINS, true) {
windows:RC_FILE=$$PRIV_RES_FOLDER/$$TARGET/windows_ico.qrc
}
SOURCES += src/main.cpp \
src/aboutsewidget.cpp \
src/schemaeditorform.cpp \
src/sourceeditorwidget.cpp
FORMS += \
ui/aboutsewidget.ui \
ui/schemaeditorform.ui \
ui/sourceeditorwidget.ui
HEADERS += \
src/aboutsewidget.h \
src/schemaeditorform.h \
src/sourceeditorwidget.h
INCLUDEPATH += ../pgmodeler/src
DEPENDPATH += ../pgmodeler \
../pgmodeler/src
# Forcing the linker to use the objects files generated
# during the compilation of the main executable since
# pgmodeler-se uses the same application class
windows: OBJECTS += ../pgmodeler/obj/pgmodelerapp.obj ../pgmodeler/obj/moc_pgmodelerapp.obj
else: OBJECTS += ../pgmodeler/obj/pgmodelerapp.o ../pgmodeler/obj/moc_pgmodelerapp.o
# Deployment settings
target.path = $$PRIVATEBINDIR
INSTALLS = target
# Print the current build settings (see pgmodeler.pri)
printBuildDetails()