From ecc7d428beeb45146183b73dd462581bc5933f63 Mon Sep 17 00:00:00 2001 From: AnonymusRaccoon Date: Mon, 13 Jan 2020 18:59:32 +0100 Subject: [PATCH] Creating the source tree --- .gitignore | 2 ++ CMakeLists.txt | 6 ++++++ main.cpp | 6 ++++++ 3 files changed, 14 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 main.cpp diff --git a/.gitignore b/.gitignore index e69de29..568de19 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea/* +cmake-build-debug/* \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..385e282 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.15) +project(Hillnes) + +set(CMAKE_CXX_STANDARD 20) + +add_executable(Hillnes main.cpp) \ No newline at end of file diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..bc8f460 --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello, World!" << std::endl; + return 0; +}