From 22f623b97332bdaa12de734706e9d8656da7322e Mon Sep 17 00:00:00 2001 From: dawidg81 Date: Wed, 28 Jan 2026 14:34:02 +0100 Subject: Added CMake --- CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0c9b6b2 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.13) +project(minesweeper) +set(CMAKE_CXX_STANDARD 20) + +set(SOURCE_FILES +src/*, +src/Game/*, +src/Utils/*, +) + +add_executable(minesweeper, ${SOURCE_FILES}) -- cgit v1.2.3