mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
More...
This commit is contained in:
parent
bcf943b9b1
commit
ede9a21dbc
@ -3,6 +3,8 @@ from conans import ConanFile, CMake
|
|||||||
class CrowConan(ConanFile):
|
class CrowConan(ConanFile):
|
||||||
name = "Crow"
|
name = "Crow"
|
||||||
version = "0.1"
|
version = "0.1"
|
||||||
|
url = "https://github.com/javierjeronimo/crow"
|
||||||
|
license = "see https://github.com/ipkn/crow/blob/master/LICENSE"
|
||||||
settings = "os", "compiler", "build_type", "arch"
|
settings = "os", "compiler", "build_type", "arch"
|
||||||
# No exports necessary
|
# No exports necessary
|
||||||
|
|
||||||
@ -12,6 +14,7 @@ class CrowConan(ConanFile):
|
|||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
cmake = CMake(self.settings)
|
cmake = CMake(self.settings)
|
||||||
|
self.run('cmake %s %s' % (self.conanfile_directory, cmake.command_line))
|
||||||
self.run("cmake . %s" % cmake.build_config)
|
self.run("cmake . %s" % cmake.build_config)
|
||||||
self.run("make")
|
self.run("make")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user