Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.h.in 541B

12345678910111213141516171819202122232425262728293031
  1. /*!
  2. * \file include/config.h.in
  3. * \brief Global config file template
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _CONFIG_H_
  8. #define _CONFIG_H_
  9. extern const char *VERSION;
  10. extern const char *BUILD_HOST;
  11. #cmakedefine USING_AL
  12. #cmakedefine USING_PNG
  13. #cmakedefine HAVE_EXECINFO_H
  14. #cmakedefine HAVE_BACKTRACE
  15. #cmakedefine HAVE_BACKTRACE_SYMBOLS
  16. #cmakedefine HAVE_DIRENT_H
  17. #cmakedefine HAVE_OPENDIR
  18. #cmakedefine HAVE_READDIR_R
  19. #cmakedefine HAVE_CLOSEDIR
  20. #cmakedefine HAVE_DT_DIR
  21. #cmakedefine HAVE_SYS_TIME_H
  22. #cmakedefine HAVE_GETTIMEOFDAY
  23. #endif