Compare commits
3 Commits
prerelease
...
prerelease
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1609227a42 | ||
|
|
51f6a88ce8 | ||
|
|
f420273471 |
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -131,7 +131,7 @@ jobs:
|
||||
- name: Build Project
|
||||
run: |
|
||||
conan install . --profile mingw-profile.txt --build=missing
|
||||
conan build .
|
||||
conan build . --profile mingw-profile.txt
|
||||
|
||||
- name: Package
|
||||
run: |
|
||||
|
||||
@@ -57,6 +57,7 @@ target_link_libraries(argon PRIVATE
|
||||
BDWgc::BDWgc
|
||||
gmp::gmp
|
||||
m
|
||||
$<$<PLATFORM_ID:Windows>:bcrypt>
|
||||
)
|
||||
|
||||
target_include_directories(argon PRIVATE
|
||||
|
||||
@@ -37,7 +37,7 @@ class ArgonConan(ConanFile):
|
||||
if not flex_path:
|
||||
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()
|
||||
|
||||
def build(self):
|
||||
|
||||
Reference in New Issue
Block a user