Minimal executable
This commit is contained in:
13
CMakeLists.txt
Normal file
13
CMakeLists.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
cmake_minimum_required(VERSION 3.24)
|
||||
|
||||
project(HansTheGatherer)
|
||||
|
||||
# Option to switch real platform vs. SDL implementation...
|
||||
|
||||
find_package(SDL3 REQUIRED)
|
||||
|
||||
add_executable(HansTheGatherer main.cpp)
|
||||
|
||||
target_link_libraries(HansTheGatherer SDL3::SDL3)
|
||||
|
||||
set_property(TARGET HansTheGatherer PROPERTY CXX_STANDARD 23)
|
||||
Reference in New Issue
Block a user