diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-03-15 04:32:04 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-03-15 04:32:04 +0100 |
commit | c87d684154875b3711168680c82e5b3b358dbdf9 (patch) | |
tree | 882bb83c65fc191412ebd9d79b3084b0ee5cb9f5 /CMakeLists.txt | |
parent | 23eb4cca38949152fb3f61dd9edd88e60cccf5a3 (diff) | |
download | json-rpc-shell-c87d684154875b3711168680c82e5b3b358dbdf9.tar.gz json-rpc-shell-c87d684154875b3711168680c82e5b3b358dbdf9.tar.xz json-rpc-shell-c87d684154875b3711168680c82e5b3b358dbdf9.zip |
Steady progress
Started parsing Content-Type properly after studying the HTTP RFC
for a significant period of time.
Some further WebSockets stuff.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c9c5762..97c63cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,8 @@ configure_file (${PROJECT_SOURCE_DIR}/config.h.in ${PROJECT_BINARY_DIR}/config.h include_directories (${PROJECT_BINARY_DIR}) # Build the executables -add_executable (demo-json-rpc-server demo-json-rpc-server.c) +add_executable (demo-json-rpc-server + demo-json-rpc-server.c http-parser/http_parser.c) target_link_libraries (demo-json-rpc-server ${project_libraries}) # The files to be installed |