Skip to content

Commit 49092cb

Browse files
committed
Initial commit
0 parents  commit 49092cb

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text eol=lf

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
cmake-build-debug
2+
.idea

CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
cmake_minimum_required(VERSION 3.17)
2+
project(rogue)
3+
4+
set(CMAKE_CXX_STANDARD 20)
5+
6+
add_executable(rogue main.cpp)

main.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
int main() {
2+
3+
}

0 commit comments

Comments
 (0)