b3060e88bebb4e3c4963a0dbe34dd5e1678ed9a2
[feisty_meow.git] / production / feisty_meow_config.ini
1 #\
2 [version]
3 # specifies the version of the code that is being constructed here.
4 major=2
5 minor=140
6 revision=50
7 build=0
8
9 # specifies the remainder of the version record info.
10 company=Feisty Meow Concerns, Ltd.
11 copyright=(C) 1987-$now Chris Koeritz & Others, under GNU GPL License
12 legal_info=This software is free to copy under the terms of the GNU GPL (or the GNU Library License if you prefer).  See http://www.gnu.org/licenses/gpl.html for more info.  We suggest peaceful purposes that help all sentient beings.
13 product_name=feisty_meow
14 web_site=http://feistymeow.org
15
16 # some settings that affect how the code is generated.
17
18 # if DEBUG is not empty, then code is built with more debugging information.
19 DEBUG=t
20 # if NOISY is non-empty, there will be more information emitted during builds.
21 NOISY=t
22
23 # if this is turned on, then all warnings are turned on and they are
24 # considered errors.
25 #STRICT_WARNINGS=t
26
27 # if this is enabled, then the source dependencies are only generated if
28 # they're missing or if this file has changed.  non-lax dependencies get
29 # rebuilt whenever a header involved changes, or dependent libraries have
30 # changed.
31 LAX_DEPENDENCIES=t
32
33 # when this is enabled, a previously built precompiled header file will be
34 # used for speeding up usage of windows system and mfc headers.
35 #PRECOMPILED_HEADERS=t
36
37 # if this is non-empty, the generated binaries are optimized primarily for
38 # speed.  we turn this flag off for debugging mode, since optimization can
39 # interfere with tracing the running program.
40 OPTIMIZE=t
41 ifneq "$(DEBUG)" ""
42   OPTIMIZE=
43 endif
44
45 # at home or for personal builds, it seems silly to create the whole build
46 # package.
47 #NO_BUILD_PACK=t
48
49 # macros that control which features are enabled in the software.
50
51 # if this is defined, then errors (such as out of range array accesses) will
52 # be caught and a message will be sent to the runtime issues log file.
53 DEFINITIONS += CATCH_ERRORS=t
54
55 # when this is defined, any errors that are caught cause the program to exit.
56 DEFINITIONS += ERRORS_ARE_FATAL=t
57
58 # this turns on intensive checks on the integrity of data structures and will
59 # cause the software to run more slowly but more carefully.  this should only
60 # be used when seeking logic errors in the low-level code.
61 ifeq "$(BOOT_STRAPPING)" ""
62 #  DEFINITIONS += EXTREME_CHECKING=t
63 endif
64
65 # this flag selects whether to build with unicode enabled.  this mainly affects
66 # win32 OSes, and right now we know it affects them badly if this is enabled.
67 # unix may build slightly differently too, such as for WX widgets.
68 ifeq "$(OP_SYSTEM)" "WIN32"
69 ###
70 ### do not enable on win32 right now.
71 ###  DEFINITIONS += UNICODE=t
72 ###
73 else
74   DEFINITIONS += UNICODE=t
75 endif
76
77 # if this flag is turned on, then memory allocations will be trapped for
78 # analysis.  memory leaks will be reported at program end, and the memory
79 # state can also be queried during runtime.
80 ifeq "$(BOOT_STRAPPING)" ""
81 #  DEFINITIONS += ENABLE_MEMORY_HOOK
82 endif
83
84 # if the callstack flag below is made available, hoople will trace the stack
85 # invocations that occur during runtime.  this provides really low-level
86 # methods with a way to know how they were invoked.  to get this information.
87 # the invoker must be fitted with FUNCDEF macros.
88 ifeq "$(BOOT_STRAPPING)" ""
89 #  DEFINITIONS += ENABLE_CALLSTACK_TRACKING
90 endif
91