summaryrefslogtreecommitdiff
path: root/daemons/gptp/windows/named_pipe_test/CMakeLists.txt
blob: e872a4f1d07493c597c3106cbd9a87917ed1797b (plain)
1
2
3
4
5
6
7
8
9
10
11
#Windows specifc build of named pipe test
cmake_minimum_required (VERSION 2.8)
project (named_pipe_test)

include_directories( ".." )
file(GLOB SRC "*.cpp")

add_definitions(-D_CRT_SECURE_NO_WARNINGS )
include_directories( include "../../common" )
add_executable (named_pipe_test ${SRC} "../../common/gptp_log.cpp" "../../windows/daemon_cl/platform.cpp")
target_link_libraries(named_pipe_test Iphlpapi Ws2_32)