diff options
author | Ryan Barnett <ryan.barnett@rockwellcollins.com> | 2018-11-14 15:43:25 -0600 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-11-18 19:52:56 +0100 |
commit | 315bd925f15e34b5af761175964b77f5652b410f (patch) | |
tree | 40e2e51332a66259c8e0790e27563184aabe8b8d /package/websocketpp/Config.in | |
parent | e85f4607f5be243f527b78d6d619555e75768342 (diff) | |
download | buildroot-315bd925f15e34b5af761175964b77f5652b410f.tar.gz buildroot-315bd925f15e34b5af761175964b77f5652b410f.zip |
websocketpp: new package
Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com>
[Peter: fix alphabetical ordering as suggested by Ryan]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/websocketpp/Config.in')
-rw-r--r-- | package/websocketpp/Config.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/package/websocketpp/Config.in b/package/websocketpp/Config.in new file mode 100644 index 0000000000..cadb9ff696 --- /dev/null +++ b/package/websocketpp/Config.in @@ -0,0 +1,15 @@ +config BR2_PACKAGE_WEBSOCKETPP + bool "websocketpp" + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11 + depends on BR2_INSTALL_LIBSTDCPP + help + WebSocket++ is a header only C++ library that implements + RFC6455 The WebSocket Protocol. It allows integrating + WebSocket client and server functionality into C++ programs. + It uses interchangeable network transport modules including + one based on C++ iostreams and one based on Boost Asio. + + http://www.zaphoyd.com/websocketpp + +comment "websocketpp needs a toolchain w/ C++ and gcc >= 4.8" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 |