From 8bc8b0b039b9e308f05895dfeed2e945403d93cc Mon Sep 17 00:00:00 2001 From: xmuli Date: Thu, 25 Mar 2021 15:26:30 +0800 Subject: [PATCH] feat: creator init project --- DbSigSlot/CMakeLists.txt | 6 ++++++ DbSigSlot/main.cpp | 8 ++++++++ DbSigSlot/object.cpp | 6 ++++++ DbSigSlot/object.h | 11 +++++++++++ 4 files changed, 31 insertions(+) create mode 100644 DbSigSlot/CMakeLists.txt create mode 100644 DbSigSlot/main.cpp create mode 100644 DbSigSlot/object.cpp create mode 100644 DbSigSlot/object.h diff --git a/DbSigSlot/CMakeLists.txt b/DbSigSlot/CMakeLists.txt new file mode 100644 index 0000000..6c803cf --- /dev/null +++ b/DbSigSlot/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.7) +project(DbSigSlot) + +set(CMAKE_CXX_STANDARD 14) + +add_executable(DbSigSlot main.cpp object.cpp object.h) diff --git a/DbSigSlot/main.cpp b/DbSigSlot/main.cpp new file mode 100644 index 0000000..95f9add --- /dev/null +++ b/DbSigSlot/main.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main(int argc, char *argv[]) +{ + + return 0; +} diff --git a/DbSigSlot/object.cpp b/DbSigSlot/object.cpp new file mode 100644 index 0000000..39fcb2f --- /dev/null +++ b/DbSigSlot/object.cpp @@ -0,0 +1,6 @@ +#include "object.h" + +Object::Object() +{ + +} diff --git a/DbSigSlot/object.h b/DbSigSlot/object.h new file mode 100644 index 0000000..9afcccc --- /dev/null +++ b/DbSigSlot/object.h @@ -0,0 +1,11 @@ +#ifndef OBJECT_H +#define OBJECT_H + + +class Object +{ +public: + Object(); +}; + +#endif // OBJECT_H \ No newline at end of file