12345678910111213141516171819202122232425262728 |
- /*!
- * \file include/config.h.in
- * \brief Global config file template
- *
- * \author xythobuz
- */
-
- #ifndef _CONFIG_H_
- #define _CONFIG_H_
-
- #define VERSION "OpenRaider-@OpenRaider_VERSION_MAJOR@.@OpenRaider_VERSION_MINOR@.@OpenRaider_VERSION_MICRO@@OpenRaider_VERSION_RELEASE@ (@CMAKE_BUILD_TYPE@)"
- #define BUILD_HOST "@OpenRaider_BUILD_HOST@ @OpenRaider_HOSTNAME@"
-
- #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
-
- #endif
|