|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # Copyright 2019-2020 Huawei Technologies Co., Ltd
- #
- # 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
- #
- # http://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.
- # ============================================================================
-
- project(ut_libgraph)
-
- set(CMAKE_CXX_STANDARD 11)
-
- # include directories
- include_directories(${CMAKE_CURRENT_LIST_DIR})
- include_directories(${GE_CODE_DIR})
- include_directories(${GE_CODE_DIR}/inc)
- include_directories(${GE_CODE_DIR}/inc/external)
- include_directories(${GE_CODE_DIR}/third_party/fwkacllib/inc)
- include_directories(${GE_CODE_DIR}/third_party/fwkacllib/inc/ops)
- include_directories(${CMAKE_BINARY_DIR})
- include_directories(${CMAKE_BINARY_DIR}/proto/ge)
- include_directories(${CMAKE_BINARY_DIR}/proto/ge/proto)
-
- set(UT_FILES
- "testcase/ge_graph/ge_anchor_utils_unittest.cc"
- "testcase/ge_graph/ge_def_type_unittest.cc"
- "testcase/ge_graph/ge_graph_anchor_unittest.cc"
- "testcase/ge_graph/ge_model_serialize_unittest.cc"
- "testcase/ge_graph/ge_node_unittest.cc"
- "testcase/ge_graph/ge_opdesc_unittest.cc"
- "testcase/ge_graph/ge_tensor_unittest.cc"
- "testcase/ge_graph/graph_builder_utils.cc"
- "testcase/ge_graph/ge_reg_unittest.cc"
- "testcase/ge_graph/ge_graph_dsl_check_test.cc"
- "testcase/ge_graph/ge_format_refiner_unittest.cc"
- "testcase/ge_graph/ge_opsproto_manager_unittest.cc"
- "testcase/ge_graph/ge_operator_unittest.cc"
- "testcase/ge_graph/ge_model_unittest.cc"
- )
-
- add_executable(ut_libgraph ${UT_FILES} ${GE_CODE_DIR}/ge/common/types.cc)
-
- target_compile_options(ut_libgraph PRIVATE
- -g --coverage -fprofile-arcs -ftest-coverage
- )
-
- target_compile_definitions(ut_libgraph PRIVATE
- google=ascend_private
- )
-
- set_target_properties(ut_libgraph PROPERTIES CXX_STANDARD 17)
-
- target_link_libraries(ut_libgraph PUBLIC
- $<BUILD_INTERFACE:intf_pub>
- gtest
- gtest_main
- ge_graph_dsl
- )
|