cmake_minimum_required ( VERSION 3.13.0 ) project ( "cellular_library unit test" VERSION 1.0.0 LANGUAGES C ) # Allow the project to be organized into folders. set_property( GLOBAL PROPERTY USE_FOLDERS ON ) # Use C90. set( CMAKE_C_STANDARD 90 ) set( CMAKE_C_STANDARD_REQUIRED ON ) # Do not allow in-source build. if( ${PROJECT_SOURCE_DIR} STREQUAL ${PROJECT_BINARY_DIR} ) message( FATAL_ERROR "In-source build is not allowed. Please build in a separate directory, such as ${PROJECT_SOURCE_DIR}/build." ) endif() # Set global path variables. get_filename_component(__MODULE_ROOT_DIR "${CMAKE_CURRENT_LIST_DIR}/.." ABSOLUTE) set(MODULE_ROOT_DIR ${__MODULE_ROOT_DIR} CACHE INTERNAL "cellular_library repository root.") # Configure options to always show in CMake GUI. option( BUILD_CLONE_SUBMODULES "Set this to ON to automatically clone any required Git submodules. When OFF, submodules must be manually cloned." OFF ) # Set output directories. set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin ) set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib ) set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib ) # ===================================== Coverity Analysis Configuration ================================================= # Set the source path and include path set( CELLULAR_COMMON_SOURCE ${MODULE_ROOT_DIR}/source ) set( CELLULAR_INCLUDE_DIRS ${CELLULAR_COMMON_SOURCE}/include ) set( CELLULAR_COMMON_INCLUDE_DIRS ${CELLULAR_INCLUDE_DIRS}/common ) set( CELLULAR_COMMON_INCLUDE_PRIVATE_DIRS ${CELLULAR_INCLUDE_DIRS}/private ) set( CELLULAR_INTERFACE_INCLUDE_DIRS ${CELLULAR_COMMON_SOURCE}/interface ) set( CELLULAR_TEST_DIRS ${MODULE_ROOT_DIR}/test/unit-test ) # Target for Coverity analysis that builds the library. add_library( coverity_analysis ${CELLULAR_COMMON_SOURCE}/cellular_at_core.c ${CELLULAR_COMMON_SOURCE}/cellular_common.c ${CELLULAR_COMMON_SOURCE}/cellular_common_api.c ${CELLULAR_COMMON_SOURCE}/cellular_3gpp_urc_handler.c ${CELLULAR_COMMON_SOURCE}/cellular_3gpp_api.c ${CELLULAR_COMMON_SOURCE}/cellular_pkthandler.c ${CELLULAR_COMMON_SOURCE}/cellular_pktio.c ) # Build Cellular library target without custom config dependency. target_compile_definitions( coverity_analysis PUBLIC CELLULAR_DO_NOT_USE_CUSTOM_CONFIG=1 ) # Cellular include path. target_include_directories( coverity_analysis PUBLIC ${CELLULAR_COMMON_INCLUDE_DIRS} ${CELLULAR_INCLUDE_DIRS} ${CELLULAR_INTERFACE_INCLUDE_DIRS} ${CELLULAR_TEST_DIRS}) # Cellular private include path. target_include_directories( coverity_analysis PRIVATE ${CELLULAR_COMMON_INCLUDE_PRIVATE_DIRS} ) # Build without debug enabled when performing static analysis target_compile_options(coverity_analysis PUBLIC -DNDEBUG ) # ==================================== Test Configuration ======================================== # Define a CMock resource path. set( CMOCK_DIR ${MODULE_ROOT_DIR}/test/unit-test/CMock CACHE INTERNAL "CMock library source directory." ) # Include CMock build configuration. include( unit-test/cmock_build.cmake ) # Check if the CMock source directory exists, and if not present, clone the submodule # if BUILD_CLONE_SUBMODULES configuration is enabled. if( NOT EXISTS ${CMOCK_DIR}/src ) # Attempt to clone CMock. if( ${BUILD_CLONE_SUBMODULES} ) clone_cmock() else() message( FATAL_ERROR "The required submodule CMock does not exist. Either clone it manually, or set BUILD_CLONE_SUBMODULES to 1 to automatically clone it during build." ) endif() endif() # Add unit test and coverage configuration. # Use CTest utility for managing test runs. This has to be added BEFORE # defining test targets with add_test() enable_testing() # Add build targets for CMock and Unit, required for unit testing. add_cmock_targets() # Add function to enable CMock based tests and coverage. include( ${MODULE_ROOT_DIR}/tools/cmock/create_test.cmake ) # Include build configuration for unit tests. add_subdirectory( unit-test ) # ==================================== Coverage Analysis configuration ======================================== # Add a target for running coverage on tests. add_custom_target( coverage COMMAND ${CMAKE_COMMAND} -P ${MODULE_ROOT_DIR}/tools/cmock/coverage.cmake DEPENDS cmock unity cellular_at_core_utest cellular_pktio_utest cellular_pkthandler_utest cellular_common_api_utest cellular_common_utest cellular_3gpp_api_utest cellular_3gpp_urc_handler_utest WORKING_DIRECTORY ${CMAKE_BINARY_DIR} )