source: nscp/service/config.h.in @ 7f9c823

0.4.00.4.10.4.2
Last change on this file since 7f9c823 was 7f9c823, checked in by Michael Medin <michael@…>, 4 years ago

First attempt at serious boostification.
NOTICE! This is NOT a complete edition, it build and runs but many features are disabled and/or broken.
But we have working, sockets and mutexes and conversion functions from boost inside now and more to come...
Also started to build with CMake since it works better then boost.build

  • Property mode set to 100644
File size: 809 bytes
Line 
1#ifndef WCONFIG_H
2#define WCONFIG_H
3
4// Version defines
5#define WT_SERIES ${VERSION_SERIES}
6#define WT_MAJOR  ${VERSION_MAJOR}
7#define WT_MINOR  ${VERSION_MINOR}
8
9/*! \brief A constant that encodes the library version of %Wt
10 *
11 * You may use this constant to check for the version of %Wt at build-time.
12 */
13#define WT_VERSION (((WT_SERIES & 0xff) << 24) | ((WT_MAJOR & 0xff) << 16) | ((WT_MINOR & 0xff) << 8))
14#define WT_VERSION_STR "${VERSION_SERIES}.${VERSION_MAJOR}.${VERSION_MINOR}"
15#define WT_CLASS       "Wt${VERSION_SERIES}_${VERSION_MAJOR}_${VERSION_MINOR}"
16
17#define RUNDIR "${RUNDIR}"
18#define WT_CONFIG_XML "${CONFIGURATION}"
19#define WTHTTP_CONFIGURATION "${WTHTTP_CONFIGURATION}"
20
21#cmakedefine WTHTTP_WITH_ZLIB
22
23#cmakedefine WT_STATIC
24#cmakedefine WTHTTP_STATIC
25#cmakedefine WT_EXT_STATIC
26
27#endif
28
Note: See TracBrowser for help on using the repository browser.