blob: 93a7a5938b764e1a662f3cedf201e88a0ed09534 (
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
|
#-------------------------------------------------
#
# Project created by QtCreator 2014-08-29T20:30:14
#
#-------------------------------------------------
include($$PWD/../dirs.pri)
include($$PWD/../utils.pri)
QT += core
QT -= gui
TARGET = UpdateSQLiteStudio
#CONFIG += console
CONFIG -= app_bundle
CONFIG += c++11
QMAKE_CXXFLAGS += -pedantic
LIBS += -lcoreSQLiteStudio
TEMPLATE = app
linux|portable {
QMAKE_LFLAGS += -Wl,-rpath,./lib
}
win32: {
RC_FILE = windows.rc
}
SOURCES += main.cpp
OTHER_FILES += \
windows.rc \
UpdateSQLiteStudio.exe.manifest
HEADERS +=
|