12 lines
245 B
CMake
12 lines
245 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)
|