From 3749b09568a4585fbad496dada8761afdd4c9357 Mon Sep 17 00:00:00 2001 From: Amir Zamani Date: Fri, 11 Jul 2014 18:08:40 +0430 Subject: [PATCH] rename the project from qhttpserver to qhttp! --- example/basic-server/basic-server.pro | 2 +- example/benchmark/benchmark.pro | 2 +- example/helloworld/helloworld.pro | 2 +- qhttpserver.pro => qhttp.pro | 0 src/src.pro | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename qhttpserver.pro => qhttp.pro (100%) diff --git a/example/basic-server/basic-server.pro b/example/basic-server/basic-server.pro index 3814ea9..fea9753 100644 --- a/example/basic-server/basic-server.pro +++ b/example/basic-server/basic-server.pro @@ -15,4 +15,4 @@ SOURCES += \ main.cpp -LIBS += $$PRJDIR/xbin/libqhttpserver.a +LIBS += $$PRJDIR/xbin/libqhttp.a diff --git a/example/benchmark/benchmark.pro b/example/benchmark/benchmark.pro index 245a3e7..71dc7d0 100644 --- a/example/benchmark/benchmark.pro +++ b/example/benchmark/benchmark.pro @@ -23,4 +23,4 @@ HEADERS += \ server.hpp \ clients.hpp -LIBS += $$PRJDIR/xbin/libqhttpserver.a +LIBS += $$PRJDIR/xbin/libqhttp.a diff --git a/example/helloworld/helloworld.pro b/example/helloworld/helloworld.pro index ca8a028..d2bc650 100644 --- a/example/helloworld/helloworld.pro +++ b/example/helloworld/helloworld.pro @@ -14,4 +14,4 @@ HEADERS += SOURCES += main.cpp -LIBS += $$PRJDIR/xbin/libqhttpserver.a +LIBS += $$PRJDIR/xbin/libqhttp.a diff --git a/qhttpserver.pro b/qhttp.pro similarity index 100% rename from qhttpserver.pro rename to qhttp.pro diff --git a/src/src.pro b/src/src.pro index 3bc2b82..ab43795 100644 --- a/src/src.pro +++ b/src/src.pro @@ -1,7 +1,7 @@ QT += core network QT -= gui -TARGET = qhttpserver +TARGET = qhttp TEMPLATE = lib CONFIG += staticlib CONFIG += c++11