1# Copyright (C) 2016-2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
2# This Source Code Form is subject to the terms of the Mozilla Public
3# License, v. 2.0. If a copy of the MPL was not distributed with this
4# file, You can obtain one at http://mozilla.org/MPL/2.0/.
5
6cmake_minimum_required (VERSION 2.8...3.23.2)
7
8# vsomeip_ctrl
9add_executable(vsomeip_ctrl EXCLUDE_FROM_ALL vsomeip_ctrl.cpp)
10target_link_libraries(vsomeip_ctrl
11    vsomeip3
12    ${Boost_LIBRARIES}
13    ${DL_LIBRARY}
14    ${CMAKE_THREAD_LIBS_INIT}
15)
16
17###################################################################################################
18
19