From 29e236d5f1c87c327ef4b65138cc0cec271099a9 Mon Sep 17 00:00:00 2001 From: Egor Sennov Date: Wed, 22 Jan 2025 11:10:12 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=B5=D0=BB=D0=B0=D0=B5=D0=BC=20=D0=BF?= =?UTF-8?q?=D1=80=D0=BE=D0=B5=D0=BA=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMakeLists.txt | 5 +++++ main.cpp | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 main.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3903c61 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.17) + +add_executable( + main main.cpp +) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..86bef45 --- /dev/null +++ b/main.cpp @@ -0,0 +1,5 @@ +#include + +int main() { + std::cout << "Hello"; +}