Enable Cmake's VERBOSE=1 by default.

Cmake's choice of default options are awful. No wonder they hide them by default
pull/280/head
Jeffrey Walton 2016-09-13 23:54:16 -04:00
parent 5790163abc
commit 9280850b26
1 changed files with 8 additions and 0 deletions

View File

@ -33,6 +33,14 @@ set(CRYPTOPP_DATA_DIR "" CACHE PATH "Crypto++ test data directory")
# Internal compiler options
#============================================================================
# Stop hiding the damn output...
set(CMAKE_VERBOSE_MAKEFILE on)
# Enable PIC for all targets except 32-bit x86
#if (CMAKE_SYSTEM_PROCESSOR)
# set (CMAKE_CXX_FLAGS "$CMAKE_CXX_FLAGS -fPIC")
#endif()
# Don't use RPATH's. The resulting binary could fail a security audit.
if (NOT CMAKE_VERSION VERSION_LESS 2.8.12)
set(CMAKE_MACOSX_RPATH 0)