STYLE: add notes where files are added into global/globals.C

ENH: use dictionary findDict() directly for debugSwitches

- the isDict() method is just a wrapper around the pointer anyhow
This commit is contained in:
Mark Olesen
2022-11-17 15:19:52 +01:00
parent d009cb8bc1
commit 3b0af86448
14 changed files with 44 additions and 9 deletions

View File

@ -3,8 +3,9 @@
SUFFIXES += .Cver
# Update strings in C++ file and in META-INFO files
# place intermediate generated file into the build directory
Cvertoo = \
$(WM_SCRIPTS)/wmake-build-info -update -filter $< > $(@D)/$(<F).C; \
$(CC) $(c++FLAGS) -c $(@D)/$(<F).C -o $@
$(WM_SCRIPTS)/wmake-build-info -update -filter $< > $(@D)/$(<F).cc; \
$(CC) $(c++FLAGS) -c $(@D)/$(<F).cc -o $@
#------------------------------------------------------------------------------