Commit fc1e5a97 authored by Davis King's avatar Davis King

Set the default build type to release

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403784
parent 37f5729c
......@@ -11,6 +11,16 @@ if(COMMAND cmake_policy)
cmake_policy(SET CMP0003 NEW)
endif()
#set default build type to Release
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING
"Choose the type of build, options are: Debug Release
RelWithDebInfo MinSizeRel." FORCE)
endif()
PROJECT(examples)
# add the folder containing the dlib folder to the include path
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment