Commit 2e4b5a0a by unknown

del 1: 删除废弃文件

parent c159ec9d
#-------------------------------------------------
#
# Project created by QtCreator 2017-11-02T10:38:18
#
#-------------------------------------------------
QT += network
QT -= gui
TARGET = fmHttp
TEMPLATE = lib
DEFINES += FMHTTP_LIBRARY
SOURCES += fmhttp.cpp
HEADERS += fmhttp.h\
fmhttp_global.h
unix {
target.path = /usr/lib
INSTALLS += target
}
#include "fmhttp.h"
FmHttp::FmHttp()
{
}
#ifndef FMHTTP_H
#define FMHTTP_H
#include "fmhttp_global.h"
class FMHTTPSHARED_EXPORT FmHttp
{
public:
FmHttp();
};
#endif // FMHTTP_H
#ifndef FMHTTP_GLOBAL_H
#define FMHTTP_GLOBAL_H
#include <QtCore/qglobal.h>
#if defined(FMHTTP_LIBRARY)
# define FMHTTPSHARED_EXPORT Q_DECL_EXPORT
#else
# define FMHTTPSHARED_EXPORT Q_DECL_IMPORT
#endif
#endif // FMHTTP_GLOBAL_H
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment