Workshop o mikrokontrolérech na SKSP 2024.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
684 B

# Do we want shared or static libraries?
UnSet("CONFIG_SHARED");
# Include debugging code
Set("CONFIG_DEBUG");
# We want the public API
Set("CONFIG_INSTALL_API");
# Libucw extensions
UnSet("CONFIG_UCW_PERL");
UnSet("CONFIG_UCW_PERL_MODULES");
UnSet("CONFIG_UCW_SHELL_UTILS");
UnSet("CONFIG_UCW_UTILS");
# Libucw-images settings
UnSet("CONFIG_IMAGES");
UnSet("CONFIG_IMAGES_LIBJPEG");
UnSet("CONFIG_IMAGES_LIBPNG");
UnSet("CONFIG_IMAGES_LIBUNGIF");
UnSet("CONFIG_IMAGES_LIBGIF");
UnSet("CONFIG_IMAGES_LIBMAGICK");
# Libucw-charset
UnSet("CONFIG_CHARSET");
UnSet("CONFIG_CHARSET_UTILS");
# Libucw-xml
UnSet("CONFIG_XML");
# Libucw-json
UnSet("CONFIG_JSON");
# Return success
1;