Skip to content

Commit 2aafc16

Browse files
authored
Fixing old DEBUG_VERBOSEflag to DGTAL_DEBUG_VERBOSE (#1834)
* Changelog + renaming flag * Apply suggestion from @dcoeurjo
1 parent d686988 commit 2aafc16

File tree

14 files changed

+81
-80
lines changed

14 files changed

+81
-80
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ git remote set-head origin -a
6969
- Adding option not to install targets to avoid crashes when boost is fetched through multiple channels ([#1809](https://github.com/DGtal-team/DGtal/pull/1809))
7070
- Cleaning up the Github Actions reuses (Bastien Doignies, [#1793](https://github.com/DGtal-team/DGtal/pull/1793))
7171
- Add cache to github actions (Bastien Doignies, [#1805](https://github.com/DGtal-team/DGtal/pull/1805))
72+
- Fixing old `DEBUG_VERBOSE` to `DGTAL_DEBUG_VERBOSE` (David Coeurjolly, [#17xx](https://github.com/DGtal-team/DGtal/pull/17xx))
7273

7374
- *IO*
7475
- Error is raised if the polyscope viewer is used without the DGTAL_WITH_POLYSCOPE_VIEWER flag (David Coeurjolly, [#1814](https://github.com/DGtal-team/DGtal/pull/1814))

cmake/DevelopmentOptions.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
set(VERBOSE_DGTAL 0)
2-
set(DEBUG_VERBOSE_DGTAL 0)
2+
set(DGTAL_DEBUG_VERBOSE_DGTAL 0)
33
set(COLOR_WITH_ALPHA_ARITH_DGTAL 0)
44

55
if (DGTAL_DEBUG_VERBOSE)
6-
set(DEBUG_VERBOSE_DGTAL 1)
7-
target_compile_definitions(DGtal PUBLIC -DDEBUG_VERBOSE)
6+
set(DGTAL_DEBUG_VERBOSE_DGTAL 1)
7+
target_compile_definitions(DGtal PUBLIC -DDGTAL_DEBUG_VERBOSE)
88
message(STATUS "Debug verbose mode activated")
99
endif()
1010

src/DGtal/doc/moduleBuildDGtal.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Beside these options, user can also specify these options:
144144
(default: OFF). If set to ON, verbose
145145
messages are traced out.
146146

147-
- \e DEBUG_VERBOSE (ON/OFF): to define the \e DEBUG_VERBOSE variable
147+
- \e DGTAL_DEBUG_VERBOSE (ON/OFF): to define the \e DGTAL_DEBUG_VERBOSE variable
148148
(default: OFF). If set to ON, verbose
149149
debug messages are traced out.
150150

0 commit comments

Comments
 (0)