Skip to content

Commit

Permalink
Enable Cmake's VERBOSE=1 by default.
Browse files Browse the repository at this point in the history
Cmake's choice of default options are awful. No wonder they hide them by default
  • Loading branch information
noloader committed Sep 14, 2016
1 parent 5790163 commit 9280850
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9280850

Please sign in to comment.