Author SHA1 Message Date
maxime1907 12b7f837c6 feat: update build system 2025-03-09 17:54:58 +01:00
3 changed files with 12 additions and 47 deletions
-6
View File
@@ -1,6 +0,0 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
@@ -1,24 +0,0 @@
name: Dependabot auto-merge
on:
pull_request_target:
branches:
- master
- main
types:
- opened
permissions:
pull-requests: write
contents: write
jobs:
enableAutoMerge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-5
View File
@@ -22,11 +22,6 @@ for sdk_name in Extension.sdks:
Extension.AddCDetour(binary) Extension.AddCDetour(binary)
# Silence fatal errors on unrecognized Clang warning flags from CDetour
if cxx.family in ['gcc', 'clang']:
binary.compiler.cflags += ['-Wno-unknown-warning-option']
binary.compiler.cxxflags += ['-Wno-unknown-warning-option']
if cxx.target.platform in ['windows']: if cxx.target.platform in ['windows']:
binary.compiler.postlink += [ 'legacy_stdio_definitions.lib' ] binary.compiler.postlink += [ 'legacy_stdio_definitions.lib' ]