mirror of https://github.com/CGAL/cgal
small script to find which DEBUG macro i use in my code
This commit is contained in:
parent
617d4f64dc
commit
ceffe07d4e
|
|
@ -1808,6 +1808,7 @@ Surface_mesher/examples/Surface_mesher/inputs/ALSTOM_TEST4.off -text svneol=unse
|
|||
Surface_mesher/examples/Surface_mesher/inputs/boeing.off -text svneol=unset#application/octet-stream
|
||||
Surface_mesher/examples/Surface_mesher/inputs/geosphere.off -text svneol=unset#application/octet-stream
|
||||
Surface_mesher/examples/Surface_mesher/inputs/triceratops.off -text svneol=unset#application/octet-stream
|
||||
Surface_mesher/find_debug_macros -text
|
||||
Triangulation_2/demo/Triangulation_2/help/cindex.html svneol=native#text/html
|
||||
Triangulation_2/demo/Triangulation_2/help/cinput_point_layer.gif -text svneol=unset#image/gif
|
||||
Triangulation_2/demo/Triangulation_2/help/conflict_zone.gif -text svneol=unset#image/gif
|
||||
|
|
|
|||
|
|
@ -10,3 +10,4 @@ inputs
|
|||
NOTICE
|
||||
internal-test-surface-mesher.C
|
||||
makefile.dependencies
|
||||
find_debug_macros
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
grep -r 'DEBUG' "${@:-.}" | \
|
||||
perl -ne '/(CGAL_[[:alnum:]_]*DEBUG[[:alnum:]_]*)/ && print "$1\n"' | \
|
||||
sort -u
|
||||
Loading…
Reference in New Issue