#
Advanced config
#
Disable os-related features
If you want to disable os-related features, you can do this before including pocketpy.h
.
#define PK_ENABLE_OS 0
#include <pocketpy.h>
#
Full config
You can create a user_config.h
in the same directory as pocketpy.h
to override some default settings.
- Copy src/config.h and rename it to
user_config.h
. - Define a macro
PK_USER_CONFIG_H
inuser_config.h
. This invalidates the defaultconfig.h
and enables youruser_config.h
. - Edit
user_config.h
to override default settings.