CMakeLists.txt 424 Bytes
Newer Older
1
# Copyright (c) 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
Tim Moon's avatar
Tim Moon committed
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# See LICENSE for license information.

add_executable(test_util
               test_nvrtc.cpp
               test_string.cpp
               ../test_common.cu)

target_link_libraries(test_util PUBLIC CUDA::cudart GTest::gtest_main ${TE_LIB})
target_compile_options(test_util PRIVATE -O2)

include(GoogleTest)
gtest_discover_tests(test_util)