Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit c5bf681

Browse files
authored
Change ngraph_test_util to a static library (#2274)
1 parent 6a4454b commit c5bf681

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/util/CMakeLists.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,10 @@ set (SRC
2121
test_control.cpp
2222
)
2323

24-
add_library(ngraph_test_util SHARED ${SRC})
24+
add_library(ngraph_test_util STATIC ${SRC})
2525
if(NGRAPH_LIB_VERSIONING_ENABLE)
2626
set_target_properties(ngraph_test_util PROPERTIES
27-
VERSION ${NGRAPH_VERSION}
28-
SOVERSION ${NGRAPH_API_VERSION})
27+
VERSION ${NGRAPH_VERSION})
2928
endif()
3029
target_include_directories(ngraph_test_util PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/..)
3130
target_link_libraries(ngraph_test_util ngraph libgtest)

0 commit comments

Comments
 (0)