First working project
This commit is contained in:
parent
525da74e4c
commit
44b415cbaa
8 changed files with 62 additions and 0 deletions
13
CMakeLists.txt
Normal file
13
CMakeLists.txt
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue