Added utility function to display error window Added textures Added font Added a way to choose resources location
13 lines
No EOL
376 B
CMake
13 lines
No EOL
376 B
CMake
cmake_minimum_required(VERSION 3.14)
|
|
project(project_maat)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules" ${CMAKE_MODULE_PATH})
|
|
|
|
add_library(engine Level.cpp Level.h Entity.cpp Entity.h Game.cpp Game.h Utils.h Utils.h Utils.cpp)
|
|
|
|
target_link_libraries(engine
|
|
sfml-window
|
|
sfml-graphics
|
|
sfml-system
|
|
pugixml) |