First working project

This commit is contained in:
Robert 2020-05-16 12:34:20 +02:00
parent 525da74e4c
commit 44b415cbaa
8 changed files with 62 additions and 0 deletions

13
CMakeLists.txt Normal file
View file

@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 3.8)
project(sdlu)
if(NOT ENABLE_EXAMPLE)
set(ENABLE_EXAMPLE CACHE BOOL OFF)
endif()
add_subdirectory(3rdparty/SDL)
add_subdirectory(SDLU)
if(ENABLE_EXAMPLE)
add_subdirectory(SDLU_Example)
endif()