Files
itgmania212121/CMakeLists.txt
T
Renaud Lepage 0e06b39764 Modularize build system
This commit extracts most of the build system logic into StepmaniaCore in order
to allow the use of different CMake-controlled toolchains.
2015-05-25 09:58:07 -07:00

12 lines
246 B
CMake

cmake_minimum_required(VERSION 2.8.12)
project(StepMania)
include (StepmaniaCore.cmake)
# The external libraries need to be included.
add_subdirectory(extern)
# The internal libraries and eventual executable to be used.
add_subdirectory(src)