forked from cneben/QuickQanava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
29 lines (26 loc) · 833 Bytes
/
conanfile.py
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
26
27
28
29
import os
import subprocess
from conans import ConanFile, tools, CMake
from conans.util import files
class QuickQanavaConan(ConanFile):
name = "QuickQanava"
version = "0.10.0"
license = "BSD License 2.0, Copyright (c) 2018 Karl Wallner <[email protected]>"
settings = "os", "compiler", "build_type", "arch"
generators = "cmake"
description = "QuickQanava: display graphs and relational content in a Qt application"
author = "Karl Wallner <[email protected]>"
url = 'https://github.com/kwallner/QuickQanava'
scm = {
"type": "git",
"url": "auto",
"revision": "auto"
}
no_copy_source = True
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
cmake.install()
# Yet there are no tests
#cmake.test()