mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
indent
This commit is contained in:
parent
5f786cdccd
commit
18bc428f06
13
conanfile.py
13
conanfile.py
@ -1,5 +1,6 @@
|
|||||||
from conans import ConanFile, CMake
|
from conans import ConanFile, CMake
|
||||||
|
|
||||||
|
|
||||||
class CrowConan(ConanFile):
|
class CrowConan(ConanFile):
|
||||||
name = "Crow"
|
name = "Crow"
|
||||||
version = "0.1"
|
version = "0.1"
|
||||||
@ -10,6 +11,7 @@ class CrowConan(ConanFile):
|
|||||||
|
|
||||||
requires = (("Boost/1.60.0@lasote/stable"),
|
requires = (("Boost/1.60.0@lasote/stable"),
|
||||||
("OpenSSL/1.0.2i@lasote/stable"))
|
("OpenSSL/1.0.2i@lasote/stable"))
|
||||||
|
|
||||||
# No exports necessary
|
# No exports necessary
|
||||||
|
|
||||||
def source(self):
|
def source(self):
|
||||||
@ -18,9 +20,10 @@ class CrowConan(ConanFile):
|
|||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
cmake = CMake(self.settings)
|
cmake = CMake(self.settings)
|
||||||
self.run('cmake %s/crow %s' % (self.conanfile_directory, cmake.command_line))
|
self.run('cmake %s/crow %s' % (self.conanfile_directory, cmake.command_line))
|
||||||
self.run("cmake --build . %s" % cmake.build_config)
|
self.run("cmake --build . %s" % cmake.build_config)
|
||||||
self.run("make")
|
self.run("make")
|
||||||
|
|
||||||
def package(self):
|
|
||||||
self.copy("*.h", dst="include", src="amalgamate")
|
def package(self):
|
||||||
|
self.copy("*.h", dst="include", src="amalgamate")
|
||||||
|
Loading…
Reference in New Issue
Block a user