From 8a675f15dd5e7568234b61c38f75d66183f2b630 Mon Sep 17 00:00:00 2001 From: murat Date: Sat, 31 Jan 2026 18:27:55 +0300 Subject: [PATCH] add cmake build system --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..46383cf --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.10) +project(ccolors) + +set(CMAKE_CXX_STANDARD 17) + +add_executable(ccolors main.cpp) +