summaryrefslogtreecommitdiff
path: root/include/ouroboros/CMakeLists.txt
blob: 4e90bc596e593c215310710e6e8bda47f2ebf8cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/version.h.in"
  "${CMAKE_CURRENT_BINARY_DIR}/version.h" @ONLY)

set(SOCK_BUF_SIZE 10240 CACHE STRING
    "Size of the buffer used by the UNIX sockets for local IPC")

configure_file("${CMAKE_CURRENT_SOURCE_DIR}/sockets.h.in"
  "${CMAKE_CURRENT_BINARY_DIR}/sockets.h" @ONLY)

set(HEADER_FILES
  cep.h
  cdefs.h
  dev.h
  errno.h
  fccntl.h
  fqueue.h
  ipcp.h
  irm.h
  name.h
  proto.h
  qos.h
  ${CMAKE_CURRENT_BINARY_DIR}/version.h
  )

install(FILES ${HEADER_FILES} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/ouroboros)