build: fix clang (#106)

This commit is contained in:
6arelyFuture 2024-08-20 19:03:16 +02:00 committed by GitHub
parent 5731d268a9
commit 4945d47829
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 1 deletions

View File

@ -3,5 +3,5 @@ updates:
- package-ecosystem: gitsubmodule - package-ecosystem: gitsubmodule
directory: "/" directory: "/"
schedule: schedule:
interval: daily interval: monthly
open-pull-requests-limit: 10 open-pull-requests-limit: 10

View File

@ -27,6 +27,7 @@ end
function libtomcrypt.project() function libtomcrypt.project()
project "libtomcrypt" project "libtomcrypt"
language "C" language "C"
cdialect "C89"
libtomcrypt.includes() libtomcrypt.includes()
libtommath.import() libtommath.import()

View File

@ -25,6 +25,7 @@ end
function libtommath.project() function libtommath.project()
project "libtommath" project "libtommath"
language "C" language "C"
cdialect "C89"
libtommath.includes() libtommath.includes()