CMake: initialize build type (#609)

Avoid using an empty build type.

While supported, it means some settings aren't well defined.
better to default to Release.
This commit is contained in:
Campbell Barton 2016-07-14 14:44:36 +10:00 committed by Shinya Kitaoka
parent 535d3f26d8
commit a3a77b1204

View file

@ -1,4 +1,7 @@
cmake_minimum_required(VERSION 2.8.11)
set(CMAKE_BUILD_TYPE_INIT Release)
project(OpenToonz)
include(${CMAKE_SOURCE_DIR}/../cmake/util_compiler.cmake)