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