Basic functionnality and configuration posssible
This commit is contained in:
commit
d3fa3350ee
5 changed files with 191 additions and 0 deletions
15
CMakeLists.txt
Normal file
15
CMakeLists.txt
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue