Skip to content

Commit 2de7f41

Browse files
Initial Commit
1 parent 0d82d64 commit 2de7f41

File tree

5 files changed

+19
-1
lines changed

5 files changed

+19
-1
lines changed

#1/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

#2/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
cmake_minimum_required(VERSION 3.12)
2+
3+
project(HelloWorldProject VERSION 1.0.0)
4+
5+
add_executable(HelloWorld main.cpp)

#2/build/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

#2/main.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include <iostream>
2+
3+
int main()
4+
{
5+
std::cout<<"Hello world\n";
6+
return 0;
7+
}

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# cmake-course
2-
CMake Course
2+
## CodeIter.com - CMake Course
3+
4+
Repository for Course: https://codeiter.com/en/categories/cmake

0 commit comments

Comments
 (0)