diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-08-03 20:36:21 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-08-04 14:45:43 +0100 |
commit | 71e2876033e0a5a814f464cad4b1f2459f3ec395 (patch) | |
tree | c03f3ec9e006d0291a5cde7cbff23439c1227f69 /src | |
parent | debug_utilities: new object-sizes debug tool (diff) | |
download | monero-71e2876033e0a5a814f464cad4b1f2459f3ec395.tar.xz |
debug_utilities: only build for debug builds
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4b54c60fc..e473c2984 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -118,6 +118,9 @@ if(NOT IOS) add_subdirectory(daemonizer) add_subdirectory(daemon) add_subdirectory(blockchain_utilities) +endif() + +if(CMAKE_BUILD_TYPE STREQUAL Debug) add_subdirectory(debug_utilities) endif() |