summaryrefslogtreecommitdiffstats
path: root/cmake/modules/FindPilotlink.cmake
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
commitcb7eddb91455a69cf66fcd717e91a51ca5e2cfef (patch)
treecf5546e4d7c44370fbe9ca2be937bd254f30ebaa /cmake/modules/FindPilotlink.cmake
downloadkpilot-cb7eddb91455a69cf66fcd717e91a51ca5e2cfef.tar.gz
kpilot-cb7eddb91455a69cf66fcd717e91a51ca5e2cfef.zip
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpilot@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'cmake/modules/FindPilotlink.cmake')
-rw-r--r--cmake/modules/FindPilotlink.cmake55
1 files changed, 55 insertions, 0 deletions
diff --git a/cmake/modules/FindPilotlink.cmake b/cmake/modules/FindPilotlink.cmake
new file mode 100644
index 0000000..649419e
--- /dev/null
+++ b/cmake/modules/FindPilotlink.cmake
@@ -0,0 +1,55 @@
+INCLUDE(CheckCXXSourceCompiles)
+
+set(CMAKE_INCLUDE_PATH "${PILOTLINK_BASE}/include")
+FIND_PATH(PILOTLINK_INCLUDE_DIR pi-dlp.h
+ /usr/include
+ /usr/include/libpisock
+ /usr/local/include
+ )
+set(CMAKE_LIBRARY_PATH "${PILOTLINK_BASE}/lib")
+FIND_LIBRARY(PILOTLINK_LIBRARY pisock
+ /usr/lib
+ /usr/local/lib
+ )
+
+IF (NOT PILOTLINK_INCLUDE_DIR)
+ MESSAGE(STATUS "Could not find pilot-link (pi-dlp.h)")
+ELSE (NOT PILOTLINK_INCLUDE_DIR)
+ MESSAGE(STATUS "Found pilot-link includes in ${PILOTLINK_INCLUDE_DIR}")
+ENDIF (NOT PILOTLINK_INCLUDE_DIR)
+
+IF (NOT PILOTLINK_LIBRARY)
+ MESSAGE(STATUS "Could not find pilot-link (libpisock.so)")
+ELSE (NOT PILOTLINK_LIBRARY)
+ MESSAGE(STATUS "Found pilot-link libraries in ${PILOTLINK_LIBRARY}")
+ENDIF (NOT PILOTLINK_LIBRARY)
+
+IF (PILOTLINK_INCLUDE_DIR AND PILOTLINK_LIBRARY)
+ SET(PILOTLINK_FOUND TRUE)
+ENDIF (PILOTLINK_INCLUDE_DIR AND PILOTLINK_LIBRARY)
+
+IF (PILOTLINK_FOUND)
+ SET(CMAKE_REQUIRED_INCLUDES ${PILOTLINK_INCLUDE_DIR})
+ CHECK_CXX_SOURCE_COMPILES("
+#include <pi-version.h>
+#if !PILOT_LINK_IS(0,12,0)
+#error \"Pilot-link version is < 0.12.0\"
+#else
+int main() { return 0; }
+#endif
+"
+ PILOTLINK_VERSION_OK)
+ENDIF (PILOTLINK_FOUND)
+
+IF (NOT PILOTLINK_VERSION_OK)
+ SET(PILOTLINK_FOUND FALSE)
+ENDIF (NOT PILOTLINK_VERSION_OK)
+
+
+IF (NOT PILOTLINK_FOUND)
+ IF (Pilotlink_FIND_REQUIRED)
+ MESSAGE(STATUS "KPilot requires pilot-link 0.12.0 or later. Pilot-link is available from pilot-link.org and is packaged by most distributions. Remember to install the development package with the compilation headers as well.")
+ MESSAGE(FATAL_ERROR "Could not find pilot-link.")
+ ENDIF (Pilotlink_FIND_REQUIRED)
+ENDIF (NOT PILOTLINK_FOUND)
+