]> mj.ucw.cz Git - libucw.git/blob - free/libs/examples/internal/default.cfg
12b3c7b7f57de2357a715949fc877787703d8be3
[libucw.git] / free / libs / examples / internal / default.cfg
1 # Default configuration file for our test application
2
3 # We want to build all libraries shared
4 Set("CONFIG_SHARED");
5
6 # Liblang settings
7 Set("CONFIG_LANG");
8 Set("MAX_WORD_CHARS" => 64);
9 Set("MAX_WORD_BYTES" => 192);
10
11 # Libimages settings
12 Set("CONFIG_IMAGES");
13 Set("CONFIG_IMAGES_LIBJPEG");
14 Set("CONFIG_IMAGES_LIBPNG");
15 Set("CONFIG_IMAGES_LIBUNGIF");
16 UnSet("CONFIG_IMAGES_LIBGIF");
17 UnSet("CONFIG_IMAGES_LIBMAGICK");
18
19 # Return success
20 1;