You've already forked OpenUxAS-bootstrap
mirror of
https://github.com/AdaCore/OpenUxAS-bootstrap.git
synced 2026-02-12 13:07:23 -08:00
19 lines
404 B
Plaintext
19 lines
404 B
Plaintext
|
|
from e3.anod.loader import spec
|
||
|
|
from e3.anod.spec import Anod
|
||
|
|
|
||
|
|
|
||
|
|
class CppZMQ(spec('github')):
|
||
|
|
|
||
|
|
github_project = 'cppzmq'
|
||
|
|
|
||
|
|
@property
|
||
|
|
def build_deps(self):
|
||
|
|
return [Anod.Dependency('compiler'),
|
||
|
|
Anod.Dependency('cmake'),
|
||
|
|
Anod.Dependency('zeromq')]
|
||
|
|
|
||
|
|
@Anod.primitive()
|
||
|
|
def build(self):
|
||
|
|
self.deps['zeromq'].setenv()
|
||
|
|
self.cmake_build()
|