Skip to content

Commit 04f8646

Browse files
Properly prefix test_common lib with 'umf_'
1 parent f7afaad commit 04f8646

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function(build_umf_test)
4545
endif()
4646

4747
set(TEST_LIBS
48-
test_common
48+
umf_test_common
4949
${ARG_LIBS}
5050
GTest::gtest_main
5151
${LIBS_OPTIONAL}

test/common/CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Corporation
1+
# Copyright (C) 2023-2024 Intel Corporation
22
# Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
33
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
44

@@ -10,8 +10,9 @@ set(COMMON_SOURCES
1010
provider_trace.c)
1111

1212
add_umf_library(
13-
NAME test_common
13+
NAME umf_test_common
1414
TYPE STATIC
1515
SRCS ${COMMON_SOURCES})
1616

17-
target_include_directories(test_common PRIVATE ${UMF_CMAKE_SOURCE_DIR}/include)
17+
target_include_directories(umf_test_common
18+
PRIVATE ${UMF_CMAKE_SOURCE_DIR}/include)

0 commit comments

Comments
 (0)