Basic functionnality and configuration posssible

This commit is contained in:
trotFunky 2021-04-17 19:09:06 +01:00
commit d3fa3350ee
5 changed files with 191 additions and 0 deletions

15
CMakeLists.txt Normal file
View file

@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 3.17)
project(ScreamingHot)
set(CMAKE_CXX_STANDARD 17)
find_package(SFML COMPONENTS window audio REQUIRED)
if(NOT SFML_FOUND)
message(FATAL_ERROR "SFML could not be found")
endif()
add_executable(ScreamingHot main.cpp)
target_link_libraries(ScreamingHot
sfml-window
sfml-audio)