| # Copyright 2019 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| include(CMakeParseArguments) |
| |
| # iree_cc_test() |
| # |
| # CMake function to imitate Bazel's cc_test rule. |
| # |
| # Parameters: |
| # NAME: name of target (see Usage below) |
| # SRCS: List of source files for the binary |
| # DATA: List of other targets and files required for this binary |
| # DEPS: List of other libraries to be linked in to the binary targets |
| # COPTS: List of private compile options |
| # DEFINES: List of public defines |
| # LINKOPTS: List of link options |
| # LABELS: Additional labels to apply to the test. The package path is added |
| # automatically. |
| # |
| # Note: |
| # By default, iree_cc_test will always create a binary named iree_${NAME}. |
| # This will also add it to ctest list as iree_${NAME}. |
| # |
| # Usage: |
| # iree_cc_library( |
| # NAME |
| # awesome |
| # HDRS |
| # "a.h" |
| # SRCS |
| # "a.cc" |
| # PUBLIC |
| # ) |
| # |
| # iree_cc_test( |
| # NAME |
| # awesome_test |
| # SRCS |
| # "awesome_test.cc" |
| # DEPS |
| # gtest_main |
| # iree::awesome |
| # ) |
| function(iree_cc_test) |
| if(NOT IREE_BUILD_TESTS) |
| return() |
| endif() |
| |
| cmake_parse_arguments( |
| _RULE |
| "" |
| "NAME" |
| "SRCS;COPTS;DEFINES;LINKOPTS;DATA;DEPS;LABELS" |
| ${ARGN} |
| ) |
| |
| iree_package_ns(_PACKAGE_NS) |
| # Replace dependencies passed by ::name with ::iree::package::name |
| list(TRANSFORM _RULE_DEPS REPLACE "^::" "${_PACKAGE_NS}::") |
| |
| # Prefix the library with the package name, so we get: iree_package_name |
| iree_package_name(_PACKAGE_NAME) |
| set(_NAME "${_PACKAGE_NAME}_${_RULE_NAME}") |
| |
| add_executable(${_NAME} "") |
| target_sources(${_NAME} |
| PRIVATE |
| ${_RULE_SRCS} |
| ) |
| target_include_directories(${_NAME} |
| PUBLIC |
| ${IREE_COMMON_INCLUDE_DIRS} |
| ) |
| target_compile_definitions(${_NAME} |
| PUBLIC |
| ${_RULE_DEFINES} |
| ) |
| target_compile_options(${_NAME} |
| PRIVATE |
| ${_RULE_COPTS} |
| ) |
| iree_add_data_dependencies(NAME ${_NAME} DATA ${_RULE_DATA}) |
| # Add all IREE targets to a folder in the IDE for organization. |
| set_property(TARGET ${_NAME} PROPERTY FOLDER ${IREE_IDE_FOLDER}/test) |
| |
| set_property(TARGET ${_NAME} PROPERTY CXX_STANDARD ${IREE_CXX_STANDARD}) |
| set_property(TARGET ${_NAME} PROPERTY CXX_STANDARD_REQUIRED ON) |
| |
| # Defer computing transitive dependencies and calling target_link_libraries() |
| # until all libraries have been declared. |
| # Track target and deps, use in iree_complete_binary_link_options() later. |
| list(APPEND _RULE_DEPS "gmock") |
| set_property(GLOBAL APPEND PROPERTY _IREE_CC_BINARY_NAMES "${_NAME}") |
| set_property(TARGET ${_NAME} PROPERTY DIRECT_DEPS ${_RULE_DEPS}) |
| |
| string(REPLACE "::" "/" _PACKAGE_PATH ${_PACKAGE_NS}) |
| set(_NAME_PATH "${_PACKAGE_PATH}:${_RULE_NAME}") |
| add_test( |
| NAME |
| ${_NAME_PATH} |
| COMMAND |
| # We run all our tests through a custom test runner to allow temp |
| # directory cleanup upon test completion. |
| "${CMAKE_SOURCE_DIR}/build_tools/cmake/run_test.${IREE_HOST_SCRIPT_EXT}" |
| "$<TARGET_FILE:${_NAME}>" |
| WORKING_DIRECTORY |
| "${CMAKE_BINARY_DIR}" |
| ) |
| list(APPEND _RULE_LABELS "${_PACKAGE_PATH}") |
| set_property(TEST ${_NAME_PATH} PROPERTY ENVIRONMENT "TEST_TMPDIR=${_NAME}_test_tmpdir") |
| set_property(TEST ${_NAME_PATH} PROPERTY LABELS "${_RULE_LABELS}") |
| endfunction() |