9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
CONFIG_APPLICATION_ID
Application ID for SQLite database files (if not defined, then the
default value will be used). Should be a 32-bit integer represented in
decimal notation, as a string token (not as a numeric token).
CONFIG_DEFAULT_RESOURCES
If defined, read resource configuration from the specified file if
it cannot find the configuration file in the home directory.
CONFIG_EXTRA_SCREEN_INIT
Can be a C code to be executed after the video mode is set, but before
any other screen initialization is done.
CONFIG_FUNCTION_ASK_TEXT
Should be a function or macro taking four arguments, which will ask for
|
|
>
>
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
CONFIG_APPLICATION_ID
Application ID for SQLite database files (if not defined, then the
default value will be used). Should be a 32-bit integer represented in
decimal notation, as a string token (not as a numeric token).
CONFIG_DEFAULT_RESOURCES
If defined, read resource configuration from the specified file if
it cannot find the configuration file in the home directory. (If
CONFIG_USING_APPIMAGE is also defined, then the path is relative to
AppDir; otherwise, it should be an absolute path.)
CONFIG_EXTRA_SCREEN_INIT
Can be a C code to be executed after the video mode is set, but before
any other screen initialization is done.
CONFIG_FUNCTION_ASK_TEXT
Should be a function or macro taking four arguments, which will ask for
|
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
If defined, omit the level editor and picture editor, as well as the
ability to import and export levels and pictures.
CONFIG_OMIT_GUI
If defined, omit the GUI. Autotest mode can still be used, and the
batch import/export works if CONFIG_OMIT_EDITOR is not defined. Any
other feature which does not require the GUI also can still be used.
CONFIG_OMIT_MUSIC
If defined, omit background music playback capabilities. (Even if this
is not defined, it can still be disabled at runtime.)
CONFIG_OMIT_PIPE
If defined, then any features that use popen are omitted. Some operating
systems may require this; otherwise, you should avoid using this.
CONFIG_RANDOM_SOURCE
Device to read random numbers from instead of using the random number
generator built in to SQLite. (This will override the definition of the
SQL RANDOM() function if it is defined.)
CONFIG_USERCACHE_PERMISSIONS
If defined as a octal number, set the default file permissions of the
user cache database when creating it. (The user can still change them
afterward by using chmod.)
CONFIG_USING_32BIT_COORDINATES
If defined, allow 32-bit coordinates in SDL_Rect and in other graphics
functions of SDL.
CONFIG_USING_APPIMAGE
If defined, it will check the environment variables having to do with
AppImage and will be able to load the default resources from there, as
well as allow the configuration file to reference the AppImage directory.
CONFIG_USING_ARM_NEON
If defined, use ARM NEON extensions. This only works on ARM.
CONFIG_USING_BSD_FUNCTIONS
If defined, use BSD functions (such as funopen) instead of GNU functions
(such as fopencookie), by adding emulations into the program. (It is
|
>
|
>
>
>
|
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
If defined, omit the level editor and picture editor, as well as the
ability to import and export levels and pictures.
CONFIG_OMIT_GUI
If defined, omit the GUI. Autotest mode can still be used, and the
batch import/export works if CONFIG_OMIT_EDITOR is not defined. Any
other feature which does not require the GUI also can still be used.
(This implies CONFIG_OMIT_CODEPAGE, CONFIG_OMIT_SOUND, and others.)
CONFIG_OMIT_MUSIC
If defined, omit background music playback capabilities. (Even if this
is not defined, it can still be disabled at runtime.)
CONFIG_OMIT_PIPE
If defined, then any features that use popen are omitted. Some operating
systems may require this; otherwise, you should avoid using this.
CONFIG_RANDOM_SOURCE
Device to read random numbers from instead of using the random number
generator built in to SQLite. (This will override the definition of the
SQL RANDOM() function if it is defined.)
CONFIG_USERCACHE_PERMISSIONS
If defined as a octal number, set the default file permissions of the
user cache database when creating it. (The user can still change them
afterward by using chmod; this only applies if the file does not already
exist and needs to be created.)
CONFIG_USING_32BIT_COORDINATES
If defined, allow 32-bit coordinates in SDL_Rect and in other graphics
functions of SDL.
CONFIG_USING_APPIMAGE
If defined, it will check the environment variables having to do with
AppImage and will be able to load the default resources from there, as
well as allow the configuration file to reference the AppImage directory.
(You should probably also define CONFIG_NO_PORTABLE, since AppImage has
its own way of implementing portable mode.)
CONFIG_USING_ARM_NEON
If defined, use ARM NEON extensions. This only works on ARM.
CONFIG_USING_BSD_FUNCTIONS
If defined, use BSD functions (such as funopen) instead of GNU functions
(such as fopencookie), by adding emulations into the program. (It is
|