sandboxed-api/oss-internship-2020/libuv/tests/CMakeLists.txt
Copybara-Service e6bb05a15d Merge pull request #55 from FedericoStazi:libuv
PiperOrigin-RevId: 343278766
Change-Id: I708fdc1cd98d5fbb2abcf3261d1cecd65cec46fe
2020-11-19 06:32:47 -08:00

35 lines
817 B
CMake

# Copyright 2020 Google LLC
#
# 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.
include(GoogleTest)
add_executable(tests
test_array.cc
test_callback.cc
test_error.cc
test_loop.cc
test_os.cc
)
target_link_libraries(tests
gmock
gtest
gtest_main
uv_a
uv_sapi
sapi::sapi
)
gtest_discover_tests(tests)