1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-08 10:50:33 +00:00
pdf2htmlEX/src/pdf2htmlEX-config.h.in

27 lines
662 B
C
Raw Normal View History

2012-08-14 05:56:41 +00:00
/*
* config.h
* Compile time constants
*
2014-02-08 12:43:49 +00:00
* Copyright (C) 2012-2014 Lu Wang <coolwanglu@gmail.com>
2012-08-14 05:56:41 +00:00
*/
2012-09-10 05:08:47 +00:00
#ifndef PDF2HTMLEX_CONFIG_H__
#define PDF2HTMLEX_CONFIG_H__
2012-08-14 05:56:41 +00:00
#include <string>
2014-02-08 12:43:49 +00:00
#define POPPLER_OLDER_THAN_0_25_0 @POPPLER_OLDER_THAN_0_25_0@
2013-09-16 12:39:53 +00:00
#define POPPLER_OLDER_THAN_0_23_0 @POPPLER_OLDER_THAN_0_23_0@
2013-09-18 08:16:40 +00:00
#define ENABLE_SVG @ENABLE_SVG@
2012-10-02 12:56:40 +00:00
namespace pdf2htmlEX {
2012-08-14 05:56:41 +00:00
static const std::string PDF2HTMLEX_VERSION = "@PDF2HTMLEX_VERSION@";
static const std::string PDF2HTMLEX_PREFIX = "@CMAKE_INSTALL_PREFIX@";
2012-09-09 16:21:46 +00:00
static const std::string PDF2HTMLEX_DATA_PATH = "@CMAKE_INSTALL_PREFIX@""/share/pdf2htmlEX";
2012-08-14 05:56:41 +00:00
} // namespace pdf2htmlEX
2012-08-14 05:56:41 +00:00
2012-09-10 05:08:47 +00:00
#endif //PDF2HTMLEX_CONFIG_H__