fix conan file

This commit is contained in:
William Bell
2025-08-15 19:56:54 +01:00
parent 1cfb4acda6
commit 686cb08f11

View File

@@ -41,7 +41,7 @@ class ArgonConan(ConanFile):
if not flex_path: if not flex_path:
raise Exception("Flex not found in system PATH. Please install flex on Linux/macOS.") raise Exception("Flex not found in system PATH. Please install flex on Linux/macOS.")
tc.variables["FLEX_EXECUTABLE"] = flex_path tc.variables["FLEX_EXECUTABLE"] = flex_path.replace("\\", "\\\\")
tc.generate() tc.generate()
def build(self): def build(self):