ENH: Set default build type to "Release"
authorHans Johnson <hans-johnson@uiowa.edu>
Wed, 27 Jul 2016 12:44:13 +0000 (07:44 -0500)
committerHans Johnson <hans-johnson@uiowa.edu>
Wed, 27 Jul 2016 13:00:59 +0000 (08:00 -0500)
commit6568f9adb58c79db8a21aaf4a7c6dbf076c887eb
treebab8215f8a17a76f9260ed77911f6d3536583fd9
parent094201f4063d62d41363dd869a4d6e64cb987fde
ENH: Set default build type to "Release"

One of the most common reasons for using lapack & blas is to
provide efficient computations.

In my experience of working with newcomers to software bulding, I
find that their first experience (and often their first year of
experience) is with the most default build possible.  It is
very common that the first impressions of the software are based on whatever is
produced by "mkdir –p PKG-build; cmake ../PKG; make".

This proposal aims to improve initial impressions of the package by making the
defaults such that the "mkdir –p PKG-build; cmake ../PKG; make" builds
PKG in "Release" mode.

Rational for Release:  It has more support in differnt IDE's by default.
As a default it should be the supportive of those with little or no
software development experience.  Those developers who need debugging
information will likely have the experience needed to know how to change
from the default.  Developers should be smart enough to build
with Debug, but the typical new user is often not educated enough to
change to Release.
CMakeLists.txt