Skip to content
Snippets Groups Projects
CMakeLists.txt 9.01 KiB
Newer Older
  • Learn to ignore specific revisions
  • PROJECT(ChimeraTK-ApplicationCore)
    
    mhier's avatar
    mhier committed
    cmake_minimum_required(VERSION 2.8)
    
    
    set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules)
    
    mhier's avatar
    mhier committed
    
    set(${PROJECT_NAME}_MAJOR_VERSION 00)
    set(${PROJECT_NAME}_MINOR_VERSION 01)
    set(${PROJECT_NAME}_PATCH_VERSION 00)
    set(${PROJECT_NAME}_VERSION ${${PROJECT_NAME}_MAJOR_VERSION}.${${PROJECT_NAME}_MINOR_VERSION}.${${PROJECT_NAME}_PATCH_VERSION})
    set(${PROJECT_NAME}_SOVERSION ${${PROJECT_NAME}_MAJOR_VERSION}.${${PROJECT_NAME}_MINOR_VERSION})
    
    
    # This library depends on deviceaccess, which is likely to change often.
    # We add a build version to the version number to be able to install
    # the same software version of the library linked against different versions
    # of deviceacces (or other dependencies)
    
    mhier's avatar
    mhier committed
    set(${PROJECT_NAME}_BUILDVERSION $ENV{${PROJECT_NAME}_BUILDVERSION})
    if( ${PROJECT_NAME}_BUILDVERSION )
      set(${PROJECT_NAME}_SOVERSION "${${PROJECT_NAME}_SOVERSION}${${PROJECT_NAME}_BUILDVERSION}")
    endif( ${PROJECT_NAME}_BUILDVERSION )
    
    # We need the build name to be part of the libraries full version name
    
    mhier's avatar
    mhier committed
    set(${PROJECT_NAME}_FULL_LIBRARY_VERSION ${${PROJECT_NAME}_SOVERSION}.${${PROJECT_NAME}_PATCH_VERSION})
    
    
    # put the min version of deviceaccess into a variable. We need it for the debian packaging scripts
    
    FIND_PACKAGE(mtca4u-deviceaccess 00.18 REQUIRED)
    
    include_directories(SYSTEM ${mtca4u-deviceaccess_INCLUDE_DIRS})
    
    
    # put the min version of deviceaccess into a variable. We need it for the debian packaging scripts
    
    FIND_PACKAGE(ChimeraTK-ControlSystemAdapter 00.02 REQUIRED)
    
    include_directories(SYSTEM ${ChimeraTK-ControlSystemAdapter_INCLUDE_DIRS})
    
    # Find the XML parser library libxml++
    FIND_PACKAGE(PkgConfig REQUIRED)
    set(LIBXML++_VERSION "libxml++-2.6")
    PKG_CHECK_MODULES(LibXML++ REQUIRED ${LIBXML++_VERSION})
    PKG_CHECK_MODULES(glib REQUIRED glib-2.0)
    include_directories(SYSTEM "${LibXML++_INCLUDEDIR}/${LIBXML++_VERSION}" ${glib_INCLUDE_DIRS} ${LibXML++_INCLUDE_DIRS})
    
    
    # optional dependency: if finding the DOOCS server library, the example and tests will be built
    # put the min version of deviceaccess into a variable. We need it for the debian packaging scripts
    
    FIND_PACKAGE(DOOCS 18.10.5 COMPONENTS server)
    
    include_directories(SYSTEM ${DOOCS_INCLUDE_DIRS})
    link_directories(${DOOCS_LIBRARY_DIRS})
    
    mhier's avatar
    mhier committed
    
    
    # optional dependency: the DoocsServerTestHelper is also needed for the tests
    
    FIND_PACKAGE(doocs-server-test-helper)
    include_directories(SYSTEM ${doocs-server-test-helper_INCLUDE_DIRS})
    link_directories(${doocs-server-test-helper_LIBRARY_DIRS})
    
    mhier's avatar
    mhier committed
    
    
    # optional dependency: the ControlSystemAdapter-DoocsAdapter needed for tests and example
    FIND_PACKAGE(ControlSystemAdapter-DoocsAdapter)
    include_directories(SYSTEM ${ControlSystemAdapter-DoocsAdapter_INCLUDE_DIRS})
    link_directories(${ControlSystemAdapter-DoocsAdapter_LIBRARY_DIRS})
    
    mhier's avatar
    mhier committed
    
    
    # optional dependency: BOOST unit test framework needed for tests
    
    FIND_PACKAGE(Boost COMPONENTS unit_test_framework )
    
    IF(Boost_UNIT_TEST_FRAMEWORK_FOUND AND DOOCS_FOUND AND doocs-server-test-helper_FOUND)
    
    mhier's avatar
    mhier committed
      set(TESTING_IS_ENABLED "true")
      ENABLE_TESTING()
    
      message(" The following packages were not found, so testing will be disabled:")
    
      IF(NOT Boost_UNIT_TEST_FRAMEWORK_FOUND)
    
      IF(NOT mtca4u-doocsServerTestHelper_FOUND)
    
    ENDIF()
    
    # Moderate version of the compiler flags
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -fPIC -Wextra -ansi -Wuninitialized ${mtca4u-deviceaccess_CXX_FLAGS} -O3")
    
    # use -DCMAKE_BUILD_TYPE=Debug in your cmake command to turn on the coverage option
    set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 --coverage -fno-inline -fno-inline-small-functions -fno-default-inline")
    
    # linker flags
    set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--export-dynamic ${mtca4u-deviceaccess_LINK_FLAGS}")
    
    mhier's avatar
    mhier committed
    
    include_directories(${CMAKE_SOURCE_DIR}/include)
    set(${PROJECT_NAME}_INCLUDE_DIRS ${${PROJECT_NAME}_INCLUDE_DIRS} ${CMAKE_SOURCE_DIR}/include/)
    aux_source_directory(${CMAKE_SOURCE_DIR}/src library_sources)
    
    MACRO( COPY_MAPPING_FILES )
      foreach( FILE_TO_COPY test.xlmap test.dmap )
        configure_file( tests/${FILE_TO_COPY} ${PROJECT_BINARY_DIR}/${FILE_TO_COPY} copyonly)
      endforeach( FILE_TO_COPY )
    ENDMACRO( COPY_MAPPING_FILES )
    
    
    # Create the executables for automated unit testing.
    
    mhier's avatar
    mhier committed
    if(TESTING_IS_ENABLED)
    
      aux_source_directory(${CMAKE_SOURCE_DIR}/tests/executables_src testExecutables)
      foreach( testExecutableSrcFile ${testExecutables})
        #NAME_WE means the base name without path and (longest) extension
        get_filename_component(excutableName ${testExecutableSrcFile} NAME_WE)
        add_executable(${excutableName} ${testExecutableSrcFile})
    
        target_link_libraries(${excutableName} ${PROJECT_NAME} ${mtca4u-deviceaccess_LIBRARIES} ${ChimeraTK-ControlSystemAdapter_LIBRARIES} ${Boost_LIBRARIES} ${LibXML++_LIBRARIES} ${glib_LIBRARIES})
    
    mhier's avatar
    mhier committed
        add_test(${excutableName} ${excutableName})
      endforeach( testExecutableSrcFile )
    
      #The make coverage command is only available in debug mode
      IF(CMAKE_BUILD_TYPE STREQUAL "Debug")
        configure_file(cmake/Makefile.coverage.in
          ${PROJECT_BINARY_DIR}/Makefile.coverage @ONLY)
        add_custom_target(coverage
          make -f Makefile.coverage
          WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
          COMMENT "Generating test coverage documentation" VERBATIM
          )
      ENDIF(CMAKE_BUILD_TYPE STREQUAL "Debug")
    
    endif(TESTING_IS_ENABLED)
    
    
      add_executable(demoApp example/demoApp.cc)
      set_target_properties(demoApp PROPERTIES COMPILE_FLAGS "${mtca4u-deviceaccess_CXX_FLAGS} ${DOOCS_CXX_FLAGS}")
      set_target_properties(demoApp PROPERTIES LINK_FLAGS ${DOOCS_LINK_FLAGS})
    
      target_link_libraries(demoApp ${PROJECT_NAME} ${mtca4u-deviceaccess_LIBRARIES} ${ChimeraTK-ControlSystemAdapter_LIBRARIES} ${ControlSystemAdapter-DoocsAdapter_LIBRARIES} ${DOOCS_LIBRARIES} ${LibXML++_LIBRARIES} ${glib_LIBRARIES})
    
      add_executable(demoApp-xmlGenerator example/demoApp.cc)
      set_target_properties(demoApp-xmlGenerator PROPERTIES COMPILE_FLAGS "${mtca4u-deviceaccess_CXX_FLAGS} -DGENERATE_XML")
    
      target_link_libraries(demoApp-xmlGenerator ${PROJECT_NAME} ${mtca4u-deviceaccess_LIBRARIES} ${ChimeraTK-ControlSystemAdapter_LIBRARIES} ${LibXML++_LIBRARIES} ${glib_LIBRARIES})
    
      add_custom_target(demoApp-xml ALL DEPENDS demoApp-xmlGenerator COMMAND ${PROJECT_BINARY_DIR}/demoApp-xmlGenerator WORKING_DIRECTORY ${PROJECT_BINARY_DIR})
    
      FILE( COPY ${CMAKE_SOURCE_DIR}/example/demoApp.conf DESTINATION ${PROJECT_BINARY_DIR})
    
      FILE( COPY ${CMAKE_SOURCE_DIR}/example/dummy.dmap DESTINATION ${PROJECT_BINARY_DIR})
      FILE( COPY ${CMAKE_SOURCE_DIR}/example/dummy.xlmap DESTINATION ${PROJECT_BINARY_DIR})
    
    endif(TESTING_IS_ENABLED)
    
    
    mhier's avatar
    mhier committed
    # C++ library
    add_library(${PROJECT_NAME} SHARED ${library_sources} )
    set_target_properties(${PROJECT_NAME} PROPERTIES VERSION ${${PROJECT_NAME}_FULL_LIBRARY_VERSION} SOVERSION ${${PROJECT_NAME}_SOVERSION})
    
    target_link_libraries(${PROJECT_NAME} ${mtca4u-deviceaccess_LIBRARIES} ${ChimeraTK-ControlSystemAdapter_LIBRARIES} ${Boost_LIBRARIES} ${LibXML++_LIBRARIES} ${glib_LIBRARIES} pthread)
    
    mhier's avatar
    mhier committed
    
    
    # do not remove runtime path of the library when installing
    set_property(TARGET ${PROJECT_NAME} PROPERTY INSTALL_RPATH_USE_LINK_PATH TRUE)
    
    mhier's avatar
    mhier committed
    
    # add a target to generate API documentation with Doxygen
    find_package(Doxygen)
    if(DOXYGEN_FOUND)
      configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
      add_custom_target(doc ALL
        ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
        WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
        COMMENT "Generating API documentation with Doxygen" VERBATIM
        )
      install(DIRECTORY ${CMAKE_BINARY_DIR}/doc/ DESTINATION share/doc/${PROJECT_NAME}-${${PROJECT_NAME}_SOVERSION})
    else(DOXYGEN_FOUND)
    
      message("Doxygen not found, documentation will not be built.")
    
    mhier's avatar
    mhier committed
    endif(DOXYGEN_FOUND)
    
    
    # Install the library and the executables
    install( TARGETS ${PROJECT_NAME} RUNTIME DESTINATION bin LIBRARY DESTINATION lib )
    
    mhier's avatar
    mhier committed
    
    
    # all include files go into include/PROJECT_NAME
    # The exclusion of ${PROJECT_NAME} prevents the recursive installation of the files just being installed.
    # The original headers are in include/*.h, the installed ones in include/PROJECT_NAME/*.h.
    
    install(DIRECTORY ${${PROJECT_NAME}_INCLUDE_DIRS} DESTINATION include/ChimeraTK/ApplicationCore
    
            FILES_MATCHING PATTERN "*.h" PATTERN ".svn" EXCLUDE PATTERN "${PROJECT_NAME}" EXCLUDE )
    
    mhier's avatar
    mhier committed
    
    
    set(${PROJECT_NAME}_INCLUDE_DIRS "${CMAKE_INSTALL_PREFIX}/include")
    set(${PROJECT_NAME}_LIBRARIES "${PROJECT_NAME}")
    set(${PROJECT_NAME}_LIBRARY_DIRS "${CMAKE_INSTALL_PREFIX}/lib")
    
    set(${PROJECT_NAME}_CXX_FLAGS "${mtca4u-deviceaccess_CXX_FLAGS}")
    set(${PROJECT_NAME}_LINK_FLAGS "${mtca4u-deviceaccess_LINK_FLAGS}")
    
    include(${CMAKE_SOURCE_DIR}/cmake/create_cmake_config_files.cmake)
    
    
    mhier's avatar
    mhier committed
    # The instructions to create a debian package are loaded from a separate file
    include(${CMAKE_SOURCE_DIR}/cmake/prepare_debian_package.cmake)