From b5a2e183d142704829f64120cc7c95b3e2e316c7 Mon Sep 17 00:00:00 2001 From: niXman Date: Sat, 30 Nov 2013 04:25:18 +0400 Subject: [PATCH] example1 QtCreator project added --- qtcreator/example1/example1.pro | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 qtcreator/example1/example1.pro diff --git a/qtcreator/example1/example1.pro b/qtcreator/example1/example1.pro new file mode 100644 index 0000000..6e0fad2 --- /dev/null +++ b/qtcreator/example1/example1.pro @@ -0,0 +1,17 @@ + +TEMPLATE = app + +CONFIG += console +CONFIG -= app_bundle +CONFIG -= qt + +INCLUDEPATH += \ + ../../sqlite3 + +LIBS += \ + -L../../libs \ + -lsqlitecpp-static + +SOURCES += \ + ../../examples/example1/main.cpp +