You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
939 B
CMake
34 lines
939 B
CMake
# Don't use any deprecated definitions (e.g., io_service).
|
|
add_definitions(-DBOOST_ASIO_NO_DEPRECATED)
|
|
|
|
if(MSVC)
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
endif()
|
|
|
|
configure_file(
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/config.h.in"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/config.h"
|
|
)
|
|
|
|
# Adhere to GNU filesystem layout conventions.
|
|
include(GNUInstallDirs)
|
|
|
|
file(GLOB SRCS
|
|
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/*.cc
|
|
${CMAKE_CURRENT_SOURCE_DIR}/*.h)
|
|
|
|
if(NOT WEBCC_ENABLE_GZIP)
|
|
list(REMOVE_ITEM SRCS "gzip.h" "gzip.cc")
|
|
endif()
|
|
|
|
set(TARGET webcc)
|
|
|
|
add_library(${TARGET} STATIC ${SRCS})
|
|
|
|
# Install lib and header files.
|
|
# On Linux, if CMAKE_INSTALL_PREFIX is ~, the lib (libwebcc.a) will be installed
|
|
# to ~/lib and header files will be installed to ~/include.
|
|
install(TARGETS ${TARGET} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/webcc)
|