src/config.h.in
author Tero Marttila <terom@fixme.fi>
Thu, 22 Jan 2009 01:53:05 +0200
branchnew_graphics
changeset 417 c503e0c6a740
parent 397 13fa0546ef87
child 432 82b0f4e55a13
permissions -rw-r--r--
support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
0
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     1
#ifndef @PROJECT_SHORT_NAME@_CONFIG_H
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     2
#define @PROJECT_SHORT_NAME@_CONFIG_H
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     3
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     4
/* Note: CMake autogenerates build/src/config.h from src/config.h.in */
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     5
/* #include "config.h" to use the generated file */
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     6
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     7
#define PROJECT_DATA_DIR "@PROJECT_DATA_DIR@"
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     8
#define PROJECT_SHORT_NAME "@PROJECT_SHORT_NAME@"
c8174cf25e06 initial import
hrnt
parents:
diff changeset
     9
#define PROJECT_LONG_NAME "@PROJECT_LONG_NAME@"
397
13fa0546ef87 hopefully version stuff is now run properly on every make...
Tero Marttila <terom@fixme.fi>
parents: 396
diff changeset
    10
13fa0546ef87 hopefully version stuff is now run properly on every make...
Tero Marttila <terom@fixme.fi>
parents: 396
diff changeset
    11
/*
13fa0546ef87 hopefully version stuff is now run properly on every make...
Tero Marttila <terom@fixme.fi>
parents: 396
diff changeset
    12
 * Defined in version.c:
13fa0546ef87 hopefully version stuff is now run properly on every make...
Tero Marttila <terom@fixme.fi>
parents: 396
diff changeset
    13
 */
13fa0546ef87 hopefully version stuff is now run properly on every make...
Tero Marttila <terom@fixme.fi>
parents: 396
diff changeset
    14
extern const char *PROJECT_VERSION, *PROJECT_BUILD_TIMESTAMP;
0
c8174cf25e06 initial import
hrnt
parents:
diff changeset
    15
417
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    16
/**
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    17
 * Provide possibility to compile without graphics code.
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    18
 *
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    19
 * Defined as a boolean value (so use #if GRAPHICS_ENABLED / if (GRAPHICS_ENABLED) )
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    20
 */
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    21
#define GRAPHICS_ENABLED @GRAPHICS_ENABLED@
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    22
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    23
/**
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    24
 * Provide possibility to compile without network code.
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    25
 */
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    26
#define NETWORK_ENABLED @NETWORK_ENABLED@
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 397
diff changeset
    27
0
c8174cf25e06 initial import
hrnt
parents:
diff changeset
    28
#endif
c8174cf25e06 initial import
hrnt
parents:
diff changeset
    29