summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e6310c4..9c84396 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,15 +1,15 @@
cmake_minimum_required(VERSION 3.15)
-project(MyProject LANGUAGES CXX)
+project(minesweeper LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
-add_executable(my_project
- main.cpp
- src/game.cpp
+add_executable(minesweeper
+ src/main.cpp
+ src/game/game.cpp
)
-target_include_directories(my_project PRIVATE
+target_include_directories(minesweeper PRIVATE
src
)