From c1ae1872d0609fbc372eb059ac83da5b827807f3 Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Wed, 3 Aug 2022 17:49:13 +0200 Subject: [PATCH] Make sure build and generate steps are present Contributes to CURA-8831 --- conanfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conanfile.py b/conanfile.py index 4c9111fb9a..c59a22eef2 100644 --- a/conanfile.py +++ b/conanfile.py @@ -265,6 +265,9 @@ class CuraConan(ConanFile): self.cpp.package.bindirs = ["bin"] 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): cura_run_envvars = self._cura_run_env.vars(self, scope = "run") ext = ".ps1" if self.settings.os == "Windows" else ".sh"