summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authordawidg81 <dawidgorski.m@gmail.com>2026-01-28 20:13:39 +0100
committerdawidg81 <dawidgorski.m@gmail.com>2026-01-28 20:13:39 +0100
commitb6bc0d092fe2ab07c6aa1406781a13838714cdf2 (patch)
tree74ee021008d28ffcae2026cf0a31fce1ec57207e /CMakeLists.txt
parentb80b1fbc4da147911099a27a8ad3d677a122ee21 (diff)
several fixes and successfull build
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c721545..2816d1c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,9 @@ project(minesweeper)
set(CMAKE_CXX_STANDARD 20)
set(SOURCE_FILES
-src/*
+src/main.cpp
+src/Game.cpp
+src/Utils.cpp
)
add_executable(minesweeper ${SOURCE_FILES})