You've already forked OpenUxAS-bootstrap
mirror of
https://github.com/AdaCore/OpenUxAS-bootstrap.git
synced 2026-02-12 13:07:23 -08:00
15 lines
269 B
Plaintext
15 lines
269 B
Plaintext
from e3.anod.spec import Anod
|
|
import os
|
|
|
|
|
|
class Cmake(Anod):
|
|
@property
|
|
def build_deps(self):
|
|
return [Anod.BuildVar(
|
|
"cmake_version",
|
|
os.environ["OPENUXAS_CMAKE_VERSION"])]
|
|
|
|
@Anod.primitive()
|
|
def build(self):
|
|
pass
|