mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-11 01:33:03 +01:00
11 lines
189 B
CMake
11 lines
189 B
CMake
|
cmake_minimum_required(VERSION 3.8)
|
||
|
project(systems CXX)
|
||
|
|
||
|
add_subdirectory(simple_velocity)
|
||
|
|
||
|
if(NOT MM_HEADLESS)
|
||
|
add_subdirectory(player_velocity)
|
||
|
add_subdirectory(fast_sky_sun)
|
||
|
endif()
|
||
|
|