Skip to content

Commit 7fb0a49

Browse files
Mateusz PełkaMateusz Pełka
Mateusz Pełka
authored and
Mateusz Pełka
committed
Initialization
0 parents  commit 7fb0a49

File tree

4 files changed

+953
-0
lines changed

4 files changed

+953
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea
2+
.idea/*
3+
cmake-build-debug
4+
cmake-build-debug/*
5+

CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
cmake_minimum_required(VERSION 3.10)
2+
project(Memo)
3+
4+
set(CMAKE_CXX_STANDARD 17)
5+
6+
add_executable(Memo main.cpp colors.h)

0 commit comments

Comments
 (0)