mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
64 lines
1.5 KiB
C
64 lines
1.5 KiB
C
/* cmake.h.in. Creates cmake.h during a cmake run */
|
|
|
|
/* Product identification */
|
|
#define PRODUCT_TASKWARRIOR 1
|
|
|
|
/* Package information */
|
|
#define PACKAGE "${PACKAGE}"
|
|
#define VERSION "${VERSION}"
|
|
#define PACKAGE_BUGREPORT "${PACKAGE_BUGREPORT}"
|
|
#define PACKAGE_NAME "${PACKAGE_NAME}"
|
|
#define PACKAGE_TARNAME "${PACKAGE_TARNAME}"
|
|
#define PACKAGE_VERSION "${PACKAGE_VERSION}"
|
|
#define PACKAGE_STRING "${PACKAGE_STRING}"
|
|
|
|
#define CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE}"
|
|
|
|
/* Installation details */
|
|
#define TASK_RCDIR "${CMAKE_INSTALL_PREFIX}/${TASK_RCDIR}"
|
|
|
|
/* git information */
|
|
#cmakedefine HAVE_COMMIT
|
|
|
|
/* cmake information */
|
|
#cmakedefine HAVE_CMAKE
|
|
#define CMAKE_VERSION "${CMAKE_VERSION}"
|
|
|
|
/* Compiling platform */
|
|
#cmakedefine LINUX
|
|
#cmakedefine DARWIN
|
|
#cmakedefine CYGWIN
|
|
#cmakedefine FREEBSD
|
|
#cmakedefine OPENBSD
|
|
#cmakedefine NETBSD
|
|
#cmakedefine DRAGONFLY
|
|
#cmakedefine HAIKU
|
|
#cmakedefine SOLARIS
|
|
#cmakedefine KFREEBSD
|
|
#cmakedefine GNUHURD
|
|
#cmakedefine UNKNOWN
|
|
|
|
/* Found the GnuTLS library */
|
|
#cmakedefine HAVE_LIBGNUTLS
|
|
|
|
/* Found tm_gmtoff */
|
|
#cmakedefine HAVE_TM_GMTOFF
|
|
|
|
/* Found timegm */
|
|
#cmakedefine HAVE_TIMEGM
|
|
|
|
/* Found st.st_birthtime struct member */
|
|
#cmakedefine HAVE_ST_BIRTHTIME
|
|
|
|
/* Found get_current_dir_name */
|
|
#cmakedefine HAVE_GET_CURRENT_DIR_NAME
|
|
|
|
/* Found uuid_unparse_lower in the uuid library */
|
|
#cmakedefine HAVE_UUID_UNPARSE_LOWER
|
|
|
|
/* Found wordexp.h */
|
|
#cmakedefine HAVE_WORDEXP
|
|
|
|
/* Undefine this to eliminate the execute command */
|
|
#define HAVE_EXECUTE 1
|
|
|