diff options
author | Timothy Pearson <[email protected]> | 2013-01-27 01:03:37 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-27 01:03:37 -0600 |
commit | 2e25fa39cd67cca2472d3eabdb478feb517d72a5 (patch) | |
tree | 63725962f632d152cbf20709191d39f6fc865966 /kfile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake | |
parent | 190d88dfc662f3fc466c9d1f53acbbea65f33c49 (diff) | |
download | tdegraphics-2e25fa39cd67cca2472d3eabdb478feb517d72a5.tar.gz tdegraphics-2e25fa39cd67cca2472d3eabdb478feb517d72a5.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kfile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake')
-rw-r--r-- | kfile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/kfile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake b/kfile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake deleted file mode 100644 index b15057c9..00000000 --- a/kfile-plugins/dependencies/poppler-tqt/ConfigureChecks.cmake +++ /dev/null @@ -1,21 +0,0 @@ -# Poppler -pkg_search_module( POPPLER poppler ) -if( POPPLER_FOUND ) - set( HAVE_POPPLER 1 ) -else( ) - tde_message_fatal( "poppler is required, but was not found on your system" ) -endif( ) - -tde_save( CMAKE_REQUIRED_INCLUDES CMAKE_REQUIRED_LIBRARIES ) -set( CMAKE_REQUIRED_INCLUDES ${DBUS_TQT_INCLUDE_DIRS} ${TQT_INCLUDE_DIRS} ${QT_INCLUDE_DIRS} ${POPPLER_INCLUDE_DIRS}) -set( CMAKE_REQUIRED_LIBRARIES ${DBUS_TQT_LDFLAGS} ${TQT_LDFLAGS} ${QT_LDFLAGS} ${POPPLER_LDFLAGS} ) -check_cxx_source_compiles(" - #include <poppler/PSOutputDev.h> - int main(int, char**) { int a; int b; PSOutputDev *psOut = new PSOutputDev(\"test\", (PDFDoc*)0, (XRef*)0, (Catalog*)0, NULL, 0, 0, psModePS, a, b); } " - HAVE_POPPLER_016 ) -check_cxx_source_compiles(" - #include <poppler/PSOutputDev.h> - int main(int, char**) { int a; int b; PSOutputDev *psOut = new PSOutputDev(\"test\", (PDFDoc*)0, NULL, 0, 0, psModePS, a, b); } " - HAVE_POPPLER_020 ) -tde_restore( CMAKE_REQUIRED_INCLUDES CMAKE_REQUIRED_LIBRARIES ) - |