19 lines
663 B
Python
19 lines
663 B
Python
from conan import ConanFile
|
|
|
|
|
|
# recipe inherits properties from the class defined in the baseline
|
|
class ConanRecipe(ConanFile):
|
|
name = "ZCLA_LVCSC"
|
|
use_git_tag_version = True
|
|
url = "https://dummy.volvocars.net/admin/repos/dummy"
|
|
python_requires = "baseline_for_zc/1.0.0@vcc-tools/stable"
|
|
python_requires_extend = "baseline_for_zc.ConanPybuild"
|
|
config_repo = "config_zcla/[~1.0]@VCC-tools/stable"
|
|
default_user = "VCC-modules"
|
|
default_channel = "stable"
|
|
project = "ZC/ZCLA_LVCSC"
|
|
config_file = "ProjectCfg.json"
|
|
src_dir = "src"
|
|
interface_dir = "interface"
|
|
create_sil = "swc" # options: "composition_swc" | "swc"
|