Compare commits

...

1 Commits

Author SHA1 Message Date
William Bell
f420273471 fix backslashes 2025-08-16 02:46:33 +01:00

View File

@@ -37,7 +37,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):