cmake_minimum_required(VERSION 2.8) # --- Set sources ------------------------------------------------------------- set(uca_SRCS uca.c uca-cam.c uca-grabber.c ) set(uca_HDRS uca.h uca-cam.h uca-grabber.h ) set(uca_LIBS "") # --- Find packages and libraries --------------------------------------------- set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) # --- Find camera interfaces find_package(PCO) find_package(PF) find_package(IPE) # --- Find frame grabber interfaces find_package(FgLib5) find_package(ClSerMe4) # --- Miscellanous packages find_package(PkgConfig) find_package(Threads) # --- Build options ----------------------------------------------------------- option(HAVE_DUMMY_CAMERA "Camera: Dummy" OFF) # --- Add sources if camera/framegrabber access sources are available --------- if (PF_FOUND) option(HAVE_PHOTON_FOCUS "Camera: Photon Focus MV2-D1280-640-CL-8" ON) if (HAVE_PHOTON_FOCUS) set(uca_SRCS ${uca_SRCS} cameras/pf.c) set(uca_LIBS ${uca_LIBS} ${PF_LIBRARIES}) include_directories(${PF_INCLUDE_DIRS}) endif() endif() if (PCO_FOUND) option(HAVE_PCO_EDGE "Camera: pco.edge" ON) if (HAVE_PCO_EDGE) set(uca_SRCS ${uca_SRCS} cameras/pco.c) set(uca_LIBS ${uca_LIBS} ${PCO_LIBRARIES}) include_directories(${PCO_INCLUDE_DIRS}) endif() endif() if (IPE_FOUND) option(HAVE_IPE_CAMERA "Camera: Custom IPE based on Xilinx FPGA" ON) if (HAVE_IPE_CAMERA) set(uca_SRC ${uca_SRCS} cameras/ipe.c) set(uca_LIB ${uca_LIBS} ${IPE_LIBRARIES}) include_directories(${IPE_INCLUDE_DIRS}) endif() endif() if (CLSERME4_FOUND AND FGLIB5_FOUND) option(HAVE_ME4 "Grabber: Silicon Software microEnable IV" ON) if (HAVE_ME4) set(uca_SRCS ${uca_SRCS} grabbers/me4.c) set(uca_LIBS ${uca_LIBS} ${CLSERME4_LIBRARY} ${FGLIB5_LIBRARY}) include_directories( ${CLSERME4_INCLUDE_DIR} ${FGLIB5_INCLUDE_DIR}) endif() endif() if (HAVE_DUMMY_CAMERA) set(uca_SRCS ${uca_SRCS} cameras/dummy.c) endif() if (Threads_FOUND) set(HAVE_PTHREADS TRUE) set(uca_LIBS ${uca_LIBS} ${CMAKE_THREAD_LIBS_INIT} ) endif() # --- Configure step configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h) include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ) # --- Build target ------------------------------------------------------------ add_definitions("-std=c99 -Wall") add_library(uca SHARED ${uca_SRCS}) target_link_libraries(uca ${uca_LIBS}) # --- Install target ---------------------------------------------------------- install(TARGETS uca LIBRARY DESTINATION lib{LIB_SUFFIX}) install(FILES ${uca_HDRS} DESTINATION include/libuca) set(CPACK_PACKAGE_DESCRIPTION "Unified Camera Access library") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Abstract interface for different camera classes and frame grabber devices") set(CPACK_PACKAGE_NAME "libuca") # --- Distro specific set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.3.6), libgcc1 (>= 1:4.1)") set(CPACK_SET_DESTDIR ON) set(CPACK_PACKAGE_CONTACT "Matthias Vogelgesang") set(CPACK_PACKAGE_VENDOR "Karlsruhe Institute of Technology/IPE") set(CPACK_PACKAGE_VERSION_MAJOR ${UCA_VERSION_MAJOR}) set(CPACK_PACKAGE_VERSION_MINOR ${UCA_VERSION_MINOR}) set(CPACK_PACKAGE_VERSION_PATCH ${UCA_VERSION_PATCH}) set(VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") set(CPACK_GENERATOR "DEB;RPM;") set(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}-${CMAKE_SYSTEM_PROCESSOR}") include(CPack)