UNPKG

@micro-os-plus/micro-test-plus

Version:

A source code library with µTest++, a lightweight testing framework for embedded platforms

85 lines (66 loc) 2.94 kB
# ----------------------------------------------------------------------------- # # This file is part of the µOS++ project (https://micro-os-plus.github.io/). # Copyright (c) 2021 Liviu Ionescu. All rights reserved. # # Permission to use, copy, modify, and/or distribute this software # for any purpose is hereby granted, under the terms of the MIT license. # # If a copy of the license was not distributed with this file, it can # be obtained from https://opensource.org/licenses/mit. # # ----------------------------------------------------------------------------- # This file is intended to be consumed by applications with: # # `add_subdirectory("xpacks/@micro-os-plus/micro-test-plus")` # # The result is an interface library that can be added to the linker with: # # `target_link_libraries(your-target PUBLIC micro-os-plus::micro-test-plus)` # ----------------------------------------------------------------------------- # https://cmake.org/cmake/help/v3.20/ cmake_minimum_required(VERSION 3.20) project( micro-os-plus-micro-test-plus DESCRIPTION "µTest++" ) # To access the optional functions, add `@micro-os-plus/build-helper` as a # dependency and include the `cmake/micro-os-plus-build-helper.cmake` file. if(COMMAND xpack_get_package_name_and_version) xpack_get_package_name_and_version("${CMAKE_CURRENT_SOURCE_DIR}/package.json") message(VERBOSE "Processing xPack ${PACKAGE_JSON_NAME}@${PACKAGE_JSON_VERSION}...") endif() # ----------------------------------------------------------------------------- # The project library definitions. # https://cmake.org/cmake/help/v3.20/command/add_library.html?highlight=interface#normal-libraries # PRIVATE: build definitions, used internally # INTERFACE: usage definitions, passed up to targets linking to it # PUBLIC: both add_library(micro-os-plus-micro-test-plus-interface INTERFACE) target_include_directories(micro-os-plus-micro-test-plus-interface INTERFACE "include" ) target_sources(micro-os-plus-micro-test-plus-interface INTERFACE "src/micro-test-plus.cpp" "src/test-runner.cpp" "src/test-reporter.cpp" "src/test-suite.cpp" ) target_compile_definitions(micro-os-plus-micro-test-plus-interface INTERFACE # None. ) target_compile_options(micro-os-plus-micro-test-plus-interface INTERFACE # None. ) target_link_libraries(micro-os-plus-micro-test-plus-interface INTERFACE # None. ) if(COMMAND xpack_display_target_lists) xpack_display_target_lists(micro-os-plus-micro-test-plus-interface) endif() # ----------------------------------------------------------------------------- # Aliases. # https://cmake.org/cmake/help/v3.20/command/add_library.html#alias-libraries add_library(micro-os-plus::micro-test-plus ALIAS micro-os-plus-micro-test-plus-interface) message(VERBOSE "> micro-os-plus::micro-test-plus -> micro-os-plus-micro-test-plus-interface") # -----------------------------------------------------------------------------