]> mj.ucw.cz Git - libucw.git/blob - examples/internal/default.cfg
Daemon: Preliminary documentation
[libucw.git] / examples / internal / 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_LIBLANG");
11 Set("CONFIG_LANG");
12 Set("MAX_WORD_CHARS" => 64);
13 Set("MAX_WORD_BYTES" => 192);
14
15 # Libimages settings
16 Set("CONFIG_IMAGES");
17 Set("CONFIG_IMAGES_LIBJPEG");
18 Set("CONFIG_IMAGES_LIBPNG");
19 Set("CONFIG_IMAGES_LIBUNGIF");
20 UnSet("CONFIG_IMAGES_LIBGIF");
21 UnSet("CONFIG_IMAGES_LIBMAGICK");
22
23 # Return success
24 1;