aboutsummaryrefslogtreecommitdiffstats
path: root/conanfile.py
diff options
context:
space:
mode:
authorJavier Jerónimo Suárez <jcjeronimo@genexies.net>2016-11-19 11:51:32 +0100
committerJavier Jerónimo Suárez <jcjeronimo@genexies.net>2016-11-19 11:51:32 +0100
commit748a95c84fe43471c5de58122de4c778f08ae2b3 (patch)
tree75ced87ec67bc3fab0f2a0c5af7c31d6f69dcaad /conanfile.py
parent0f4cfc91086dc2d1f05407ac738a581f5768951b (diff)
downloadcrow-748a95c84fe43471c5de58122de4c778f08ae2b3.tar.gz
crow-748a95c84fe43471c5de58122de4c778f08ae2b3.zip
More
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/conanfile.py b/conanfile.py
index ba12a10..533179f 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -1,4 +1,5 @@
from conans import ConanFile, CMake
+import shutil
class CrowConan(ConanFile):
name = "Crow"
@@ -11,6 +12,7 @@ class CrowConan(ConanFile):
def source(self):
# this will create a hello subfolder, take it into account
self.run("git clone https://github.com/javierjeronimo/crow.git")
+ shutil.move("crow/*", ".")
def build(self):
cmake = CMake(self.settings)