feat: creator init project
This commit is contained in:
parent
d5da4e5be4
commit
8bc8b0b039
6
DbSigSlot/CMakeLists.txt
Normal file
6
DbSigSlot/CMakeLists.txt
Normal 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
8
DbSigSlot/main.cpp
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#include <iostream>
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
6
DbSigSlot/object.cpp
Normal file
6
DbSigSlot/object.cpp
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#include "object.h"
|
||||||
|
|
||||||
|
Object::Object()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
11
DbSigSlot/object.h
Normal file
11
DbSigSlot/object.h
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#ifndef OBJECT_H
|
||||||
|
#define OBJECT_H
|
||||||
|
|
||||||
|
|
||||||
|
class Object
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Object();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // OBJECT_H
|
Loading…
Reference in New Issue
Block a user