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.
19 lines
382 B
19 lines
382 B
2 months ago
|
# Default configuration file for our test application
|
||
|
|
||
|
# Do a local build
|
||
|
Set("CONFIG_LOCAL");
|
||
|
|
||
|
# We want to build all libraries shared
|
||
|
Set("CONFIG_SHARED");
|
||
|
|
||
|
# Libucw-images settings
|
||
|
Set("CONFIG_IMAGES");
|
||
|
Set("CONFIG_IMAGES_LIBJPEG");
|
||
|
Set("CONFIG_IMAGES_LIBPNG");
|
||
|
Set("CONFIG_IMAGES_LIBUNGIF");
|
||
|
UnSet("CONFIG_IMAGES_LIBGIF");
|
||
|
UnSet("CONFIG_IMAGES_LIBMAGICK");
|
||
|
|
||
|
# Return success
|
||
|
1;
|