18 lines
313 B
Text
18 lines
313 B
Text
|
cmake_minimum_required(VERSION 3.30)
|
||
|
project(epr24pr3_ojanssen2)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 14)
|
||
|
|
||
|
include_directories(.)
|
||
|
|
||
|
add_executable(epr24pr3_ojanssen2
|
||
|
main.cpp
|
||
|
Player.cpp
|
||
|
Player.h
|
||
|
PositionVector.cpp
|
||
|
PositionVector.h
|
||
|
std_lib_inc.h
|
||
|
Maze.h
|
||
|
Maze.cpp
|
||
|
)
|