Compare commits
9 Commits
prerelease
...
prerelease
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7b3a1e1835 | ||
|
|
8e53579682 | ||
|
|
0d8f262185 | ||
|
|
fc6f41d89b | ||
|
|
6a7ce72eb7 | ||
|
|
f84e5429a5 | ||
|
|
f4c7294267 | ||
|
|
be4b04a286 | ||
|
|
9d11122e93 |
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
@@ -106,7 +106,7 @@ jobs:
|
||||
submodules: recursive
|
||||
|
||||
- name: Install build tools
|
||||
run: choco install winflexbison mingw -y
|
||||
run: choco install winflexbison -y
|
||||
shell: pwsh
|
||||
|
||||
- name: Setup Python
|
||||
@@ -123,13 +123,7 @@ jobs:
|
||||
|
||||
- name: Build with MinGW
|
||||
run: |
|
||||
conan install . `
|
||||
-s compiler=gcc `
|
||||
-s compiler.version=13 `
|
||||
-s compiler.libcxx=libstdc++11 `
|
||||
-s arch=x86_64 `
|
||||
-s os=Windows `
|
||||
--build=missing
|
||||
conan install .
|
||||
conan build .
|
||||
shell: pwsh
|
||||
|
||||
|
||||
8
conan/profiles/windows-mingw
Normal file
8
conan/profiles/windows-mingw
Normal file
@@ -0,0 +1,8 @@
|
||||
[settings]
|
||||
os=Windows
|
||||
arch=x86_64
|
||||
compiler=gcc
|
||||
compiler.version=13
|
||||
compiler.cppstd=gnu17
|
||||
compiler.libcxx=libstdc++11
|
||||
build_type=Release
|
||||
@@ -30,6 +30,7 @@ class ArgonConan(ConanFile):
|
||||
self.folders.generators = "build"
|
||||
|
||||
def generate(self):
|
||||
os.environ["CONAN_NON_INTERACTIVE"] = "1"
|
||||
tc = CMakeToolchain(self)
|
||||
|
||||
if os.name == "nt": # Windows
|
||||
|
||||
Reference in New Issue
Block a user