mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
22 lines
No EOL
350 B
C++
22 lines
No EOL
350 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "dll_export.h"
|
|
|
|
#ifndef RESOURCES_PATH
|
|
#define RESOURCES_PATH "./"
|
|
#endif
|
|
|
|
#ifndef LIBRARIES_PATH
|
|
#define LIBRARIES_PATH "./"
|
|
#endif
|
|
|
|
#ifndef SATDUMP_VERSION
|
|
#define SATDUMP_VERSION "0.0.0-dev"
|
|
#endif
|
|
|
|
namespace satdump
|
|
{
|
|
SATDUMP_DLL extern std::string RESPATH;
|
|
SATDUMP_DLL extern std::string LIBPATH;
|
|
} |