mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
Merge pull request #628 from cmitu/cmake_debug
cmake: define _DEBUG for Debug builds
This commit is contained in:
commit
0dbd146e88
|
@ -119,6 +119,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
|
||||
|
|
|
@ -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).
|
||||
|
|
Loading…
Reference in a new issue