/usr/include/juffed/LibConfig.h is in juffed-dev 0.10-85-g5ba17f9-17.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | // For some freaking reason neither of Q_OS_WIN32 or Q_WS_WIN worked here
// for me so I had to introduce an extra "__SPECIAL_WINDOWS_DEFINE__"
// that is set in CMakeLists.txt for Windows only.
// We don't need those defines for *nix systems so it's just empty for them.
//#ifdef Q_WS_WIN
//#ifdef Q_OS_WIN32
#ifdef __SPECIAL_WINDOWS_DEFINE__
#ifdef juff_EXPORTS
#define LIBJUFF_EXPORT Q_DECL_EXPORT
#else
#define LIBJUFF_EXPORT Q_DECL_IMPORT
#endif
#else
#define LIBJUFF_EXPORT
#endif
|