File tree Expand file tree Collapse file tree 2 files changed +25
-7
lines changed
Expand file tree Collapse file tree 2 files changed +25
-7
lines changed Original file line number Diff line number Diff line change 1+ from conans import ConanFile , CMake , tools
2+
3+ class autobahn_cppConan (ConanFile ):
4+ name = "autobahn-cpp"
5+ version = "v20.8.1"
6+ license = "Boost Software License - Version 1.0 - August 17th, 2003"
7+ author = "Crossbar.io Technologies GmbH and contributors"
8+ description = "WAMP for C++ on Boost/ASIO"
9+ url = "https://github.com/crossbario/autobahn-cpp"
10+ requires = "boost/1.73.0" ,"msgpack/3.2.1" ,"websocketpp/0.8.2"
11+ generators = "cmake_find_package"
12+ scm = {
13+ "type" : "git" ,
14+ "subfolder" : "." ,
15+ "url" : "auto" ,
16+ "revision" : "auto"
17+ }
18+ no_copy_source = True
19+
20+ def package (self ):
21+ self .copy ("*.hpp" , dst = "include/autobahn" , src = "autobahn" )
22+ self .copy ("*.ipp" , dst = "include/autobahn" , src = "autobahn" )
23+
24+ def package_id (self ):
25+ self .info .header_only ()
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments