Define _DEBUG for Debug builds

This commit is contained in:
Cristi Mitrana 2020-01-03 12:17:43 +02:00
parent b46c082821
commit 92db741c53
2 changed files with 9 additions and 0 deletions

View file

@ -114,6 +114,10 @@ else()
add_definitions(-DUSE_OPENGLES_10)
endif()
# Enable additional defines for the Debug build configuration
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_DEBUG")
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D_DEBUG")
#-------------------------------------------------------------------------------
#add include directories
set(COMMON_INCLUDE_DIRS

View file

@ -47,6 +47,11 @@ cmake .
make
```
NOTE: to generate a `Debug` build on Unix/Linux, run the Makefile generation step as:
```bash
cmake -DCMAKE_BUILD_TYPE=Debug .
```
**On the Raspberry Pi:**
Complete Raspberry Pi build instructions at [emulationstation.org](http://emulationstation.org/gettingstarted.html#install_rpi_standalone).