Make sure build and generate steps are present

Contributes to CURA-8831
This commit is contained in:
j.spijker@ultimaker.com 2022-08-03 17:49:13 +02:00 committed by jspijker
parent ae7023b2db
commit c1ae1872d0

View file

@ -265,6 +265,9 @@ class CuraConan(ConanFile):
self.cpp.package.bindirs = ["bin"] self.cpp.package.bindirs = ["bin"]
self.cpp.package.resdirs = ["resources", "plugins", "packaging", "pip_requirements"] # pip_requirements should be the last item in the list self.cpp.package.resdirs = ["resources", "plugins", "packaging", "pip_requirements"] # pip_requirements should be the last item in the list
def build(self):
pass
def generate(self): def generate(self):
cura_run_envvars = self._cura_run_env.vars(self, scope = "run") cura_run_envvars = self._cura_run_env.vars(self, scope = "run")
ext = ".ps1" if self.settings.os == "Windows" else ".sh" ext = ".ps1" if self.settings.os == "Windows" else ".sh"