diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-03-29 00:37:12 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-03-29 00:37:12 +0100 |
commit | b0c712c146b208ac9dad5fd5829a2bc38773a4de (patch) | |
tree | f5446f2e46eac0a62d797c5113386998356a6ac8 /CMakeLists.txt | |
parent | b400ea8d09b516b40b767d9477634bab470d95ec (diff) | |
download | json-rpc-shell-b0c712c146b208ac9dad5fd5829a2bc38773a4de.tar.gz json-rpc-shell-b0c712c146b208ac9dad5fd5829a2bc38773a4de.tar.xz json-rpc-shell-b0c712c146b208ac9dad5fd5829a2bc38773a4de.zip |
Stubplement WebSockets
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7898e3f..a706b0a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,11 +23,14 @@ set (CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) find_package (Curses) find_package (PkgConfig REQUIRED) pkg_check_modules (dependencies REQUIRED libcurl jansson) +pkg_check_modules (libssl REQUIRED libssl libcrypto) find_package (LibEV REQUIRED) pkg_check_modules (ncursesw ncursesw) -set (project_libraries ${dependencies_LIBRARIES} ${LIBEV_LIBRARIES} readline) -include_directories (${dependencies_INCLUDE_DIRS} ${LIBEV_INCLUDE_DIRS}) +set (project_libraries ${dependencies_LIBRARIES} + ${libssl_LIBRARIES} ${LIBEV_LIBRARIES} readline) +include_directories (${dependencies_INCLUDE_DIRS} + ${libssl_INCLUDE_DIRS} ${LIBEV_INCLUDE_DIRS}) if (ncursesw_FOUND) list (APPEND project_libraries ${ncursesw_LIBRARIES}) @@ -44,7 +47,7 @@ configure_file (${PROJECT_SOURCE_DIR}/config.h.in ${PROJECT_BINARY_DIR}/config.h include_directories (${PROJECT_BINARY_DIR}) # Build the main executable and link it -add_executable (${PROJECT_NAME} ${PROJECT_NAME}.c) +add_executable (${PROJECT_NAME} ${PROJECT_NAME}.c http-parser/http_parser.c) target_link_libraries (${PROJECT_NAME} ${project_libraries}) # The files to be installed |