Compare commits

..

3 Commits

Author SHA1 Message Date
William Bell
51f6a88ce8 add profile to build 2025-08-16 03:00:01 +01:00
William Bell
f420273471 fix backslashes 2025-08-16 02:46:33 +01:00
William Bell
4b2a747338 use msys/flex 2025-08-16 02:36:47 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -120,7 +120,7 @@ jobs:
mingw-w64-x86_64-cmake mingw-w64-x86_64-cmake
mingw-w64-x86_64-python mingw-w64-x86_64-python
mingw-w64-x86_64-python-pip mingw-w64-x86_64-python-pip
mingw-w64-x86_64-flex msys/flex
- name: Install Conan - name: Install Conan
run: | run: |
@@ -131,7 +131,7 @@ jobs:
- name: Build Project - name: Build Project
run: | run: |
conan install . --profile mingw-profile.txt --build=missing conan install . --profile mingw-profile.txt --build=missing
conan build . conan build . --profile mingw-profile.txt
- name: Package - name: Package
run: | run: |

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):