1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-10-05 19:41:40 +00:00
pdf2htmlEX/src/config.h.in

21 lines
442 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@";
static const boost::filesystem::path PDF2HTMLEX_LIB_PATH = boost::filesystem::path(PDF2HTMLEX_PREFIX) / "lib" / "pdf2htmlEX";
#endif //CONFIG_H__