-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathconanfile.py
More file actions
25 lines (22 loc) · 831 Bytes
/
conanfile.py
File metadata and controls
25 lines (22 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from conans import ConanFile, CMake, tools
class autobahn_cppConan(ConanFile):
name = "autobahn-cpp"
version = "v20.8.1"
license = "Boost Software License - Version 1.0 - August 17th, 2003"
author = "Crossbar.io Technologies GmbH and contributors"
description = "WAMP for C++ on Boost/ASIO"
url = "https://github.com/crossbario/autobahn-cpp"
requires = "boost/1.73.0","msgpack/3.2.1","websocketpp/0.8.2"
generators = "cmake_find_package"
scm = {
"type": "git",
"subfolder": ".",
"url": "auto",
"revision": "auto"
}
no_copy_source = True
def package(self):
self.copy("*.hpp", dst="include/autobahn", src="autobahn")
self.copy("*.ipp", dst="include/autobahn", src="autobahn")
def package_id(self):
self.info.header_only()