Creating the source tree

This commit is contained in:
AnonymusRaccoon
2020-01-13 18:59:32 +01:00
parent 38f719b76b
commit ecc7d428be
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored
View File

@@ -0,0 +1,2 @@
.idea/*
cmake-build-debug/*

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.15)
project(Hillnes)
set(CMAKE_CXX_STANDARD 20)
add_executable(Hillnes main.cpp)

6
main.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}