forked from AndreLouisCaron/httpxx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleans up build script, making 'csha1' easier to embed in other CMake…
… projects.
- Loading branch information
1 parent
170c49d
commit 254e738
Showing
7 changed files
with
448 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# httpxx library. | ||
|
||
set(headers | ||
Error.hpp | ||
Flags.hpp | ||
Message.hpp | ||
Method.hpp | ||
Request.hpp | ||
Response.hpp | ||
) | ||
set(sources | ||
Error.cpp | ||
Flags.cpp | ||
Message.cpp | ||
Method.cpp | ||
Request.cpp | ||
Response.cpp | ||
) | ||
add_library(httpxx | ||
STATIC | ||
${sources} | ||
${headers} | ||
) | ||
add_dependencies(httpxx http-parser) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#ifndef _http_hpp__ | ||
#define _http_hpp__ | ||
|
||
// Copyright(c) Andre Caron <andre.l.caron@gmail.com>, 2011 | ||
// | ||
// This document is covered by the an Open Source Initiative approved license. A | ||
// copy of the license should have been provided alongside this software package | ||
// (see "LICENSE.txt"). If not, terms of the license are available online at | ||
// "http://www.opensource.org/licenses/mit". | ||
|
||
#include "Error.hpp" | ||
#include "Flags.hpp" | ||
#include "Message.hpp" | ||
#include "Method.hpp" | ||
#include "Request.hpp" | ||
#include "Response.hpp" | ||
|
||
#endif /* _http_hpp__ */ |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.