]> mj.ucw.cz Git - libucw.git/blob - free/libs/examples/internal/default.cfg
c0335b5e4167b9944e05c15f825300d5feb5a0c9
[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_LEN" => 64);
9
10 # Libimages settings
11 Set("CONFIG_IMAGES");
12 Set("CONFIG_IMAGES_LIBJPEG");
13 Set("CONFIG_IMAGES_LIBPNG");
14 Set("CONFIG_IMAGES_LIBUNGIF");
15 UnSet("CONFIG_IMAGES_LIBGIF");
16 UnSet("CONFIG_IMAGES_LIBMAGICK");
17
18 # Return success
19 1;