Merge pull request #1225 from linev/cmake_dom_socket

[cmake] let enable X DOM sockets
This commit is contained in:
bel2125 2023-12-30 11:03:42 +01:00 committed by GitHub
commit 848ae0e232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
)