]> mj.ucw.cz Git - libucw.git/blob - free/libs/examples/internal/default.cfg
1723d128c65812fadd8011c02a85635f85acd4e7
[libucw.git] / free / libs / examples / internal / default.cfg
1 # Default configuration file for our test application
2
3 # Version string used by all Sherlock libraries
4 Set("SHERLOCK_VERSION" => "0.0");
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_LEN" => 64);
12
13 # Libimages settings
14 Set("CONFIG_IMAGES");
15 Set("CONFIG_IMAGES_LIBJPEG");
16 Set("CONFIG_IMAGES_LIBPNG");
17 Set("CONFIG_IMAGES_LIBUNGIF");
18 UnSet("CONFIG_IMAGES_LIBGIF");
19 UnSet("CONFIG_IMAGES_LIBMAGICK");
20
21 # Return success
22 1;