Table of Contents
CMake
Links
Variables
CMake
Links
Kitware, Inc. and Contributors:
CMake Homepage
OverAPI.com:
CMake Cheat Sheet
StackOverflow:
What are CMAKE_BUILD_TYPE: Debug, Release, RelWithDebInfo and MinSizeRel?
Variables
CMAKE_BUILD_TYPE:STRING=Debug
: build type (
Debug
,
Release
,
etc.
)
CMAKE_VERBOSE_MAKEFILE:BOOL=ON
: verbose command output from generated Makefiles
1)
1)
Might need
make VERBOSE=1
in addition.