blob: 42aa7dc1891e909b07e8fcda8a3d83b0187f4117 (
plain) (
blame)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#-------------------------------------------------
#
# Project created by QtCreator 2014-09-06T00:39:26
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
include($$PWD/../dirs.pri)
include($$PWD/../utils.pri)
OBJECTS_DIR = $$OBJECTS_DIR/sqlitestudio
MOC_DIR = $$MOC_DIR/sqlitestudio
UI_DIR = $$UI_DIR/sqlitestudio
linux: {
TARGET = sqlitestudio
}
!linux: {
TARGET = SQLiteStudio
}
TEMPLATE = app
CONFIG += c++11
QMAKE_CXXFLAGS += -pedantic
linux|portable {
QMAKE_LFLAGS += -Wl,-rpath,./lib
}
LIBS += -lcoreSQLiteStudio -lguiSQLiteStudio
SOURCES += main.cpp
TRANSLATIONS += translations/sqlitestudio_de.ts \
translations/sqlitestudio_it.ts \
translations/sqlitestudio_zh_CN.ts \
translations/sqlitestudio_sk.ts \
translations/sqlitestudio_ru.ts \
translations/sqlitestudio_pt_BR.ts \
translations/sqlitestudio_fr.ts \
translations/sqlitestudio_es.ts \
translations/sqlitestudio_pl.ts
win32: {
RC_FILE = windows.rc
}
macx: {
ICON = ../guiSQLiteStudio/img/sqlitestudio.icns
}
OTHER_FILES += \
windows.rc \
SQLiteStudio.exe.manifest
unix: {
target.path = $$BINDIR
INSTALLS += target
}
RESOURCES += \
sqlitestudio.qrc
|