00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef SAGA_DEFAULTS_HPP
00012 #define SAGA_DEFAULTS_HPP
00013
00014 #if !defined(SAGA_PREFIX)
00015 #error "Do not include this file without defining SAGA_PREFIX (see saga-config.hpp)."
00016 #endif
00017
00018
00019
00020
00021
00022 #if !defined(SAGA_DEFAULT_INI_PATH)
00023 #define SAGA_DEFAULT_INI_PATH SAGA_PREFIX "/share/saga"
00024 #endif
00025 #if !defined(SAGA_DEFAULT_INI_FILE)
00026 #define SAGA_DEFAULT_INI_FILE SAGA_PREFIX "/share/saga/saga.ini"
00027 #endif
00028 #if !defined(SAGA_DEFAULT_ADAPTOR_PATH)
00029 #define SAGA_DEFAULT_ADAPTOR_PATH SAGA_PREFIX "/lib"
00030 #endif
00031
00032 #endif // SAGA_DEFAULTS_HPP
00033