Skip to content

Commit

Permalink
Default cmake to release if buildtype not specified
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-abram authored Oct 8, 2018
1 parent 3f63f72 commit 1705fbb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
cmake_minimum_required(VERSION 3.2.0)

if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
endif()

project(Etterna)

include (StepmaniaCore.cmake)
Expand Down

0 comments on commit 1705fbb

Please sign in to comment.