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 620B

1234567891011121314151617181920212223242526272829303132333435
  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 *VERSION_SHORT;
  11. extern const char *BUILD_HOST;
  12. #cmakedefine USING_AL
  13. #cmakedefine USING_PNG
  14. #cmakedefine HAVE_EXECINFO_H
  15. #cmakedefine HAVE_BACKTRACE
  16. #cmakedefine HAVE_BACKTRACE_SYMBOLS
  17. #cmakedefine HAVE_DIRENT_H
  18. #cmakedefine HAVE_OPENDIR
  19. #cmakedefine HAVE_READDIR_R
  20. #cmakedefine HAVE_CLOSEDIR
  21. #cmakedefine HAVE_DT_DIR
  22. #cmakedefine HAVE_UNISTD_H
  23. #cmakedefine HAVE_GETCWD
  24. #cmakedefine HAVE_STDLIB_H
  25. #cmakedefine HAVE_GETENV
  26. #endif