mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
Merge pull request #1225 from linev/cmake_dom_socket
[cmake] let enable X DOM sockets
This commit is contained in:
commit
848ae0e232
@ -88,6 +88,11 @@ message(STATUS "IP Version 6 - ${CIVETWEB_ENABLE_IPV6}")
|
||||
option(CIVETWEB_ENABLE_WEBSOCKETS "Enable websockets connections" OFF)
|
||||
message(STATUS "Websockets support - ${CIVETWEB_ENABLE_WEBSOCKETS}")
|
||||
|
||||
# X DOM sockets support
|
||||
option(CIVETWEB_ENABLE_X_DOM_SOCKET "Enable X DOM sockets support" OFF)
|
||||
message(STATUS "X DOM sockets support - ${CIVETWEB_ENABLE_X_DOM_SOCKET}")
|
||||
|
||||
|
||||
# Server statistics support
|
||||
option(CIVETWEB_ENABLE_SERVER_STATS "Enable server statistics" OFF)
|
||||
message(STATUS "Server statistics support - ${CIVETWEB_ENABLE_SERVER_STATS}")
|
||||
@ -497,6 +502,9 @@ endif()
|
||||
if (CIVETWEB_ENABLE_WEBSOCKETS)
|
||||
add_definitions(-DUSE_WEBSOCKET)
|
||||
endif()
|
||||
if (CIVETWEB_ENABLE_X_DOM_SOCKET)
|
||||
add_definitions(-DUSE_X_DOM_SOCKET)
|
||||
endif()
|
||||
if (CIVETWEB_ENABLE_SERVER_STATS)
|
||||
add_definitions(-DUSE_SERVER_STATS)
|
||||
endif()
|
||||
@ -632,13 +640,13 @@ configure_file(
|
||||
)
|
||||
|
||||
install(
|
||||
FILES
|
||||
FILES
|
||||
"${PROJECT_BINARY_DIR}/${PROJECT_NAME}.pc"
|
||||
DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig"
|
||||
)
|
||||
|
||||
install(
|
||||
FILES
|
||||
FILES
|
||||
"${PROJECT_BINARY_DIR}/${PROJECT_NAME}-cpp.pc"
|
||||
DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig"
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user