feat: creator init project

This commit is contained in:
xmuli 2021-03-25 15:26:30 +08:00
parent d5da4e5be4
commit 8bc8b0b039
No known key found for this signature in database
GPG Key ID: 7980604EB89EB1DF
4 changed files with 31 additions and 0 deletions

6
DbSigSlot/CMakeLists.txt Normal file
View File

@ -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)

8
DbSigSlot/main.cpp Normal file
View File

@ -0,0 +1,8 @@
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
return 0;
}

6
DbSigSlot/object.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "object.h"
Object::Object()
{
}

11
DbSigSlot/object.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef OBJECT_H
#define OBJECT_H
class Object
{
public:
Object();
};
#endif // OBJECT_H