diff options
| author | 2015-01-30 17:00:07 -0500 | |
|---|---|---|
| committer | 2015-01-30 17:00:07 -0500 | |
| commit | 016003905ca0e8e459e3dc33e786beda8ec92f45 (patch) | |
| tree | 34aba2d2e0d66fbf2c3821ee8358f56e40c4c95e /SQLiteStudio3/sqlitestudiocli/sqlitestudiocli.pro | |
| parent | 724c012ada23ef480c61fe99e3c9784b91aeb1ca (diff) | |
Imported Upstream version 3.0.2upstream/3.0.2
Diffstat (limited to 'SQLiteStudio3/sqlitestudiocli/sqlitestudiocli.pro')
| -rw-r--r-- | SQLiteStudio3/sqlitestudiocli/sqlitestudiocli.pro | 207 |
1 files changed, 106 insertions, 101 deletions
diff --git a/SQLiteStudio3/sqlitestudiocli/sqlitestudiocli.pro b/SQLiteStudio3/sqlitestudiocli/sqlitestudiocli.pro index 2fcf30a..09cb2b9 100644 --- a/SQLiteStudio3/sqlitestudiocli/sqlitestudiocli.pro +++ b/SQLiteStudio3/sqlitestudiocli/sqlitestudiocli.pro @@ -1,101 +1,106 @@ -#-------------------------------------------------
-#
-# Project created by QtCreator 2013-02-28T23:21:43
-#
-#-------------------------------------------------
-
-include($$PWD/../dirs.pri)
-
-OBJECTS_DIR = $$OBJECTS_DIR/sqlitestudiocli
-MOC_DIR = $$MOC_DIR/sqlitestudiocli
-UI_DIR = $$UI_DIR/sqlitestudiocli
-
-QT += core
-QT -= gui
-
-TARGET = sqlitestudiocli
-CONFIG += console
-CONFIG -= app_bundle
-
-TEMPLATE = app
-
-CONFIG += c++11
-QMAKE_CXXFLAGS += -pedantic
-linux|portable {
- QMAKE_LFLAGS += -Wl,-rpath,./lib
-}
-
-SOURCES += main.cpp \
- cli.cpp \
- commands/clicommand.cpp \
- commands/clicommandfactory.cpp \
- commands/clicommandadd.cpp \
- commands/clicommandremove.cpp \
- commands/clicommandexit.cpp \
- commands/clicommanddblist.cpp \
- commands/clicommanduse.cpp \
- commands/clicommandopen.cpp \
- commands/clicommandclose.cpp \
- commands/clicommandsql.cpp \
- clicommandexecutor.cpp \
- cli_config.cpp \
- commands/clicommandhelp.cpp \
- cliutils.cpp \
- commands/clicommandtables.cpp \
- climsghandler.cpp \
- commands/clicommandmode.cpp \
- commands/clicommandnullvalue.cpp \
- commands/clicommandhistory.cpp \
- commands/clicommanddir.cpp \
- commands/clicommandpwd.cpp \
- commands/clicommandcd.cpp \
- clicommandsyntax.cpp \
- commands/clicommandtree.cpp \
- clicompleter.cpp \
- commands/clicommanddesc.cpp
-
-LIBS += -lcoreSQLiteStudio
-
-win32: {
- INCLUDEPATH += $$PWD/../../../include
- LIBS += -L$$PWD/../../../lib -ledit_static
-}
-
-unix: {
- LIBS += -lreadline -ltermcap
-}
-
-HEADERS += \
- cli.h \
- commands/clicommand.h \
- commands/clicommandfactory.h \
- commands/clicommandadd.h \
- commands/clicommandremove.h \
- commands/clicommandexit.h \
- commands/clicommanddblist.h \
- commands/clicommanduse.h \
- commands/clicommandopen.h \
- commands/clicommandclose.h \
- commands/clicommandsql.h \
- cli_config.h \
- clicommandexecutor.h \
- commands/clicommandhelp.h \
- cliutils.h \
- commands/clicommandtables.h \
- climsghandler.h \
- commands/clicommandmode.h \
- commands/clicommandnullvalue.h \
- commands/clicommandhistory.h \
- commands/clicommanddir.h \
- commands/clicommandpwd.h \
- commands/clicommandcd.h \
- clicommandsyntax.h \
- commands/clicommandtree.h \
- clicompleter.h \
- commands/clicommanddesc.h
-
-unix: {
- target.path = $$BINDIR
- INSTALLS += target
-}
-
+#------------------------------------------------- +# +# Project created by QtCreator 2013-02-28T23:21:43 +# +#------------------------------------------------- + +include($$PWD/../dirs.pri) + +OBJECTS_DIR = $$OBJECTS_DIR/sqlitestudiocli +MOC_DIR = $$MOC_DIR/sqlitestudiocli +UI_DIR = $$UI_DIR/sqlitestudiocli + +QT += core +QT -= gui + +TARGET = sqlitestudiocli +CONFIG += console +CONFIG -= app_bundle + +TEMPLATE = app + +CONFIG += c++11 +QMAKE_CXXFLAGS += -pedantic +linux|portable { + QMAKE_LFLAGS += -Wl,-rpath,./lib +} + +TRANSLATIONS += translations/sqlitestudiocli_pl.ts + +SOURCES += main.cpp \ + cli.cpp \ + commands/clicommand.cpp \ + commands/clicommandfactory.cpp \ + commands/clicommandadd.cpp \ + commands/clicommandremove.cpp \ + commands/clicommandexit.cpp \ + commands/clicommanddblist.cpp \ + commands/clicommanduse.cpp \ + commands/clicommandopen.cpp \ + commands/clicommandclose.cpp \ + commands/clicommandsql.cpp \ + clicommandexecutor.cpp \ + cli_config.cpp \ + commands/clicommandhelp.cpp \ + cliutils.cpp \ + commands/clicommandtables.cpp \ + climsghandler.cpp \ + commands/clicommandmode.cpp \ + commands/clicommandnullvalue.cpp \ + commands/clicommandhistory.cpp \ + commands/clicommanddir.cpp \ + commands/clicommandpwd.cpp \ + commands/clicommandcd.cpp \ + clicommandsyntax.cpp \ + commands/clicommandtree.cpp \ + clicompleter.cpp \ + commands/clicommanddesc.cpp + +LIBS += -lcoreSQLiteStudio + +win32: { + INCLUDEPATH += $$PWD/../../../include + LIBS += -L$$PWD/../../../lib -ledit_static +} + +unix: { + LIBS += -lreadline -ltermcap +} + +HEADERS += \ + cli.h \ + commands/clicommand.h \ + commands/clicommandfactory.h \ + commands/clicommandadd.h \ + commands/clicommandremove.h \ + commands/clicommandexit.h \ + commands/clicommanddblist.h \ + commands/clicommanduse.h \ + commands/clicommandopen.h \ + commands/clicommandclose.h \ + commands/clicommandsql.h \ + cli_config.h \ + clicommandexecutor.h \ + commands/clicommandhelp.h \ + cliutils.h \ + commands/clicommandtables.h \ + climsghandler.h \ + commands/clicommandmode.h \ + commands/clicommandnullvalue.h \ + commands/clicommandhistory.h \ + commands/clicommanddir.h \ + commands/clicommandpwd.h \ + commands/clicommandcd.h \ + clicommandsyntax.h \ + commands/clicommandtree.h \ + clicompleter.h \ + commands/clicommanddesc.h + +unix: { + target.path = $$BINDIR + INSTALLS += target +} + +RESOURCES += \ + sqlitestudiocli.qrc + |
