mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 01:55:48 -05:00
Use cmake options to specify build type and debug output so that CMakeList.txt needs not be modified to control this
This commit is contained in:
parent
af58b0d48d
commit
91cab6c623
@ -3,14 +3,22 @@ cmake_policy(SET CMP0043 OLD)
|
|||||||
|
|
||||||
option(V4L-RTL "Use Linux Kernel RTL-SDR Source." OFF)
|
option(V4L-RTL "Use Linux Kernel RTL-SDR Source." OFF)
|
||||||
option(V4L-MSI "Use Linux Kernel MSI2500 Source." OFF)
|
option(V4L-MSI "Use Linux Kernel MSI2500 Source." OFF)
|
||||||
|
option(BUILD_TYPE "Build type (RELEASE, RELEASEWITHDBGINFO, DEBUG" RELEASE)
|
||||||
|
option(DEBUG_OUTPUT "Print debug messages" OFF)
|
||||||
|
|
||||||
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)
|
||||||
|
|
||||||
project(sdrangel)
|
project(sdrangel)
|
||||||
|
|
||||||
|
if (BUILD_TYPE MATCHES RELEASE)
|
||||||
set(CMAKE_BUILD_TYPE "Release")
|
set(CMAKE_BUILD_TYPE "Release")
|
||||||
#set(CMAKE_BUILD_TYPE "ReleaseWithDebugInfo")
|
elseif (BUILD_TYPE MATCHES RELEASEWITHDBGINFO)
|
||||||
#set(CMAKE_BUILD_TYPE "Debug")
|
set(CMAKE_BUILD_TYPE "ReleaseWithDebugInfo")
|
||||||
|
elseif (BUILD_TYPE MATCHES DEBUG)
|
||||||
|
set(CMAKE_BUILD_TYPE "Debug")
|
||||||
|
else()
|
||||||
|
set(CMAKE_BUILD_TYPE "Release")
|
||||||
|
endif()
|
||||||
|
|
||||||
set(QT_USE_QTOPENGL TRUE)
|
set(QT_USE_QTOPENGL TRUE)
|
||||||
set(CMAKE_AUTOMOC ON)
|
set(CMAKE_AUTOMOC ON)
|
||||||
@ -33,8 +41,13 @@ ENDIF()
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
#include(${QT_USE_FILE})
|
#include(${QT_USE_FILE})
|
||||||
|
|
||||||
|
if (DEBUG_OUTPUT)
|
||||||
|
set( QT_DEFINITIONS "${QT_DEFINITIONS}" )
|
||||||
|
else()
|
||||||
set( QT_DEFINITIONS "${QT_DEFINITIONS} -DQT_NO_DEBUG_OUTPUT" )
|
set( QT_DEFINITIONS "${QT_DEFINITIONS} -DQT_NO_DEBUG_OUTPUT" )
|
||||||
#set( QT_DEFINITIONS "${QT_DEFINITIONS}" )
|
endif()
|
||||||
|
|
||||||
add_definitions(${QT_DEFINITIONS})
|
add_definitions(${QT_DEFINITIONS})
|
||||||
|
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
|
12
Readme.md
12
Readme.md
@ -201,3 +201,15 @@ For Debian Jessie or Stretch:
|
|||||||
- Enhance WFM (stereo, RDS?)
|
- Enhance WFM (stereo, RDS?)
|
||||||
- Even more demods ...
|
- Even more demods ...
|
||||||
|
|
||||||
|
<h1>Developper's notes</h1>
|
||||||
|
|
||||||
|
<h2>Build options</h2>
|
||||||
|
|
||||||
|
The release type can be specified with the `-DBUILD_TYPE` cmake option. It takes the following values:
|
||||||
|
- `RELEASE` (default): produces production release code i.e.optimized and no debug symbols
|
||||||
|
- `RELEASEWITHDBGINFO`: optimized with debug info
|
||||||
|
- `DEBUG`: unoptimized with debug info
|
||||||
|
|
||||||
|
You can specify whether or not you want to see debug messages printed out to the console with the `-DDEBUG_OUTPUT` cmake option:
|
||||||
|
- `OFF` (default): no debug output
|
||||||
|
- `ON`: debug output
|
Loading…
Reference in New Issue
Block a user