blob: 3681fd3e64b771e7d0361cb03e708b6c028d54f9 [file] [log] [blame]
msardara8f554b72018-12-11 18:36:55 +01001# Copyright (c) 2017 Cisco and/or its affiliates.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at:
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
15
16set(HEADERS_DIR ${CMAKE_CURRENT_SOURCE_DIR})
17set(TEST_NAME libmemif-test)
18set(TEST_LIBS m rt)
19
20find_package(Subunit QUIET)
21if (NOT SUBUNIT_LIBRARY)
22 set(SUBUNIT_LIBRARY "")
23endif ()
24
25set(SOURCE_FILES
26 main_test.c
27 socket_test.c
28 unit_test.c
29)
30
31add_executable(${TEST_NAME} ${SOURCE_FILES})
32target_include_directories(${TEST_NAME} PRIVATE $<BUILD_INTERFACE:${HEADERS_DIR}>)
33target_link_libraries(${TEST_NAME} ${LIBMEMIF} ${CHECK_LIBRARY} ${SUBUNIT_LIBRARY} ${TEST_LIBS} ${CMAKE_THREAD_LIBS_INIT})
34
35add_test(unit_test unit-test)