1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 18:30:34 +00:00
pdf2htmlEX/src/config.h.in

21 lines
445 B
C
Raw Normal View History

2012-08-14 05:56:41 +00:00
/*
* config.h
* Compile time constants
*
* by WangLu
*/
#ifndef CONFIG_H__
#define CONFIG_H__
#include <string>
#include <boost/filesystem.hpp>
static const std::string PDF2HTMLEX_VERSION = "@PDF2HTMLEX_VERSION@";
static const std::string PDF2HTMLEX_PREFIX = "@CMAKE_INSTALL_PREFIX@";
2012-08-17 10:13:21 +00:00
static const boost::filesystem::path PDF2HTMLEX_DATA_PATH = boost::filesystem::path(PDF2HTMLEX_PREFIX) / "share" / "pdf2htmlEX";
2012-08-14 05:56:41 +00:00
#endif //CONFIG_H__