diff options
| author | Christian <zerov83@gmail.com> | 2016-02-13 21:39:23 +0100 |
|---|---|---|
| committer | Christian <zerov83@gmail.com> | 2016-02-13 21:39:23 +0100 |
| commit | 96a27aa661e2e5562dd9fac1b8eadf0304f92da1 (patch) | |
| tree | 37d5ba75017552e71524be02c563aa97311b83ff /MediaContainer.cpp | |
| parent | 63f30c89b51e54301d5dbfa981dc95e8f11af6c5 (diff) | |
| download | vdr-plugin-plex-96a27aa661e2e5562dd9fac1b8eadf0304f92da1.tar.gz vdr-plugin-plex-96a27aa661e2e5562dd9fac1b8eadf0304f92da1.tar.bz2 | |
define for compiling without libskindesiger.
Use 'make DISABLESKINDESIGNER=1'
Diffstat (limited to 'MediaContainer.cpp')
| -rw-r--r-- | MediaContainer.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaContainer.cpp b/MediaContainer.cpp index 10096ce..4ad2a52 100644 --- a/MediaContainer.cpp +++ b/MediaContainer.cpp @@ -1,5 +1,8 @@ #include "MediaContainer.h" -#include "pictureCache.h" + +#ifdef SKINDESIGNER + #include "pictureCache.h" +#endif namespace plexclient { @@ -69,6 +72,7 @@ std::string MediaContainer::ThumbUri() return m_pServer->GetUri() + m_sThumb; } +#ifdef SKINDESIGNER void MediaContainer::PreCache() { bool foo; @@ -81,5 +85,6 @@ void MediaContainer::PreCache() if(!it->m_sArt.empty()) cPictureCache::GetInstance().GetPath(it->ArtUri(), 1920, 1080, foo); }*/ } +#endif } |
