1234567891011121314151617181920212223242526272829303132333435363738 |
- /*!
- * \file include/config.h.in
- * \brief Global config file template
- *
- * \author xythobuz
- */
-
- #ifndef _CONFIG_H_
- #define _CONFIG_H_
-
- extern const char *VERSION;
- extern const char *VERSION_SHORT;
- extern const char *BUILD_HOST;
-
- #cmakedefine USING_AL
- #cmakedefine USING_PNG
-
- #cmakedefine HAVE_EXECINFO_H
- #cmakedefine HAVE_BACKTRACE
- #cmakedefine HAVE_BACKTRACE_SYMBOLS
-
- #cmakedefine HAVE_DIRENT_H
- #cmakedefine HAVE_OPENDIR
- #cmakedefine HAVE_READDIR_R
- #cmakedefine HAVE_CLOSEDIR
- #cmakedefine HAVE_DT_DIR
-
- #cmakedefine HAVE_UNISTD_H
- #cmakedefine HAVE_GETCWD
-
- #cmakedefine HAVE_STDLIB_H
- #cmakedefine HAVE_GETENV
-
- #cmakedefine HAVE_SYS_TIME_H
- #cmakedefine HAVE_GETTIMEOFDAY
-
- #endif
|