Ignore:
Timestamp:
Mar 31, 2015, 5:56:39 PM (11 years ago)
Author:
rousseau
Message:

Made simple console logging a build option

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/swt/Config.kmk

    r22086 r22092  
    338338ifneq ($(PATH_SDK_OS2TK4),)
    339339#
    340 # We can't add Toolkit includes in _INCS (it will casuse then to be searched
     340# We can't add Toolkit includes in _INCS (it will cause them to be searched
    341341# before GCC headers and lead to conflicts), so use -idirafter.
    342342#
     
    344344TEMPLATE_OdinCxx_CXXFLAGS  += -idirafter $(PATH_SDK_OS2TK4)/h
    345345endif
     346
     347#
     348# If DBG_CON is defined, jam it in to globally enable simple console logging.
     349# If not, then per source console logging can be enabled by defining DBG_CON
     350# _before_ the inclusion of the <misc.h> header.
     351#
     352ifneq ($(DBG_CON),undefined)
     353TEMPLATE_OdinCxx_CFLAGS    += -DDBG_CON
     354TEMPLATE_OdinCxx_CXXFLAGS  += -DDBG_CON
     355endif
Note: See TracChangeset for help on using the changeset viewer.