[IE][NGRAPH][BUILD] Enable UNITY build for more targets (#2592)
[platform/upstream/dldt.git] / ngraph / test / util / CMakeLists.txt
1 # ******************************************************************************
2 # Copyright 2017-2020 Intel Corporation
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 # ******************************************************************************
16
17 if(NOT NGRAPH_TEST_UTIL_ENABLE)
18     return()
19 endif()
20
21 set (SRC
22     all_close_f.cpp
23     engine/ie_engines.cpp
24     engine/interpreter_engine.cpp
25     float_util.cpp
26     test_tools.cpp
27     test_control.cpp
28     visitor.hpp
29     provenance_enabler.hpp
30 )
31
32 add_library(ngraph_test_util STATIC ${SRC})
33
34 if(COMMAND ie_faster_build)
35     ie_faster_build(ngraph_test_util
36         UNITY
37     )
38 endif()
39
40 if(NGRAPH_LIB_VERSIONING_ENABLE)
41     set_target_properties(ngraph_test_util PROPERTIES
42         VERSION ${NGRAPH_VERSION})
43 endif()
44 target_include_directories(ngraph_test_util PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/.. ${IE_MAIN_SOURCE_DIR}/include)
45 target_link_libraries(ngraph_test_util PRIVATE ngraph ngraph_backend libgtest)
46
47 install(TARGETS ngraph_test_util DESTINATION ${NGRAPH_INSTALL_LIB})