Config.h 1.3 KB

12345678910111213141516171819202122232425
  1. #define GEOGRAPHICLIB_VERSION_STRING "1.52"
  2. #define GEOGRAPHICLIB_VERSION_MAJOR 1
  3. #define GEOGRAPHICLIB_VERSION_MINOR 52
  4. #define GEOGRAPHICLIB_VERSION_PATCH 0
  5. #define GEOGRAPHICLIB_DATA "C:/Users/sven/Documents/Visual Studio 2019/Projects/TST/install"
  6. // These are macros which affect the building of the library
  7. #define GEOGRAPHICLIB_HAVE_LONG_DOUBLE 0
  8. #define GEOGRAPHICLIB_WORDS_BIGENDIAN 0
  9. #define GEOGRAPHICLIB_PRECISION 1
  10. // Specify whether GeographicLib is a shared or static library. When compiling
  11. // under Visual Studio it is necessary to specify whether GeographicLib is a
  12. // shared library. This is done with the macro GEOGRAPHICLIB_SHARED_LIB, which
  13. // cmake will correctly define as 0 or 1 when only one type of library is in
  14. // the package. If both shared and static libraries are available,
  15. // GEOGRAPHICLIB_SHARED_LIB is set to 2 which triggers a preprocessor error in
  16. // Constants.hpp. In this case, the appropriate value (0 or 1) for
  17. // GEOGRAPHICLIB_SHARED_LIB must be specified when compiling any program that
  18. // includes GeographicLib headers. This is done automatically if GeographicLib
  19. // and the user's code were built with cmake version 2.8.11 (which introduced
  20. // the command target_compile_definitions) or later.
  21. #if !defined(GEOGRAPHICLIB_SHARED_LIB)
  22. #define GEOGRAPHICLIB_SHARED_LIB 0
  23. #endif