* used native LTO support from cmake 3.9.6 * Removed compilation flags push / pop * Fixes * Fixes for VPU unit tests * Temp WA for old gcc
24 lines
383 B
CMake
24 lines
383 B
CMake
# Copyright (C) 2018-2020 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(helpers)
|
|
|
|
if (ENABLE_GAPI_TESTS)
|
|
add_subdirectory(fluid_preproc)
|
|
endif()
|
|
|
|
if (ENABLE_FUNCTIONAL_TESTS)
|
|
add_subdirectory(functional)
|
|
endif()
|
|
|
|
if (ENABLE_BEH_TESTS)
|
|
add_subdirectory(behavior)
|
|
endif()
|
|
|
|
if(ENABLE_TESTS)
|
|
add_subdirectory(unit)
|
|
endif()
|