From 436bf3885846f5dfe428ba1950855892f7ddf229 Mon Sep 17 00:00:00 2001 From: "alexis.drai" Date: Fri, 3 Feb 2023 10:25:00 +0100 Subject: [PATCH] :tada: --- .gitignore | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ CMakeLists.txt | 6 ++++++ README.md | 1 + main.cpp | 7 +++++++ 4 files changed, 68 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 README.md create mode 100644 main.cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c530076 --- /dev/null +++ b/.gitignore @@ -0,0 +1,54 @@ +# ---> JetBrains +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +.idea + +# CMake +cmake-build-*/ + +# File-based project format +*.iws + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# ---> C++ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + + +CMakeLists.txt.user \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..7e726f6 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.24) +project(labyrinth) + +set(CMAKE_CXX_STANDARD 17) + +add_executable(labyrinth main.cpp) diff --git a/README.md b/README.md new file mode 100644 index 0000000..4f12ee5 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Blarp \ No newline at end of file diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..4f9de56 --- /dev/null +++ b/main.cpp @@ -0,0 +1,7 @@ +#include + +int main() +{ + std::cout << "Hello, World!" << std::endl; + return 0; +}