Added CMake building system for libmemif
[vpp.git] / extras / libmemif / test / CMakeLists.txt
1 # 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
14 cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
15
16 set(HEADERS_DIR ${CMAKE_CURRENT_SOURCE_DIR})
17 set(TEST_NAME libmemif-test)
18 set(TEST_LIBS m rt)
19
20 find_package(Subunit QUIET)
21 if (NOT SUBUNIT_LIBRARY)
22   set(SUBUNIT_LIBRARY "")
23 endif ()
24
25 set(SOURCE_FILES
26   main_test.c
27   socket_test.c
28   unit_test.c
29 )
30
31 add_executable(${TEST_NAME} ${SOURCE_FILES})
32 target_include_directories(${TEST_NAME} PRIVATE $<BUILD_INTERFACE:${HEADERS_DIR}>)
33 target_link_libraries(${TEST_NAME} ${LIBMEMIF} ${CHECK_LIBRARY} ${SUBUNIT_LIBRARY} ${TEST_LIBS} ${CMAKE_THREAD_LIBS_INIT})
34
35 add_test(unit_test unit-test)