pdf2htmlEX/src/pdf2htmlEX-config.h.in

25 lines
538 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>
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__