blob: 89a38f703f94b2e070ec8948a367626600f4e56c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+
set(socketpair_SOURCES
socketpair.c socketpair.h
)
add_library(socketpair OBJECT ${socketpair_SOURCES})
set_target_properties (
socketpair PROPERTIES
FOLDER Lib
)
|