From 3178aa58b15d894dafc1a51db8a84dbda7153f32 Mon Sep 17 00:00:00 2001 From: Grigory Podkhvatilin Date: Thu, 23 Jan 2025 23:33:19 +0300 Subject: [PATCH] Add cmake config and main.cpp --- CMakeLists.txt | 6 ++++++ README.md | 1 + main.cpp | 0 3 files changed, 7 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..a3cd1ce --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.27) +project(hw) + +set(CMAKE_CXX_STANDARD 17) + +add_executable(hw main.cpp) diff --git a/README.md b/README.md index e69de29..8b13789 100644 --- a/README.md +++ b/README.md @@ -0,0 +1 @@ + diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..e69de29