Compare commits

...

3 Commits

Author SHA1 Message Date
Per Sandberg d01d42e9ac
Update ada.yml
Upadte action version
2024-03-15 19:06:56 +01:00
Per Sandberg 89c68b5b7d
Merge pull request #19 from manthonyaiello/master
Remove references to nonexistent TOML files.
2024-03-15 17:36:00 +01:00
M. Anthony Aiello f33c134f76 Remove references to nonexistent TOML files.
There are no TOML files in the project, but the `zmq.gpr` file mentioned
them. `gprbuild` now issues a warning when this happens.
2024-02-06 15:51:21 -05:00
2 changed files with 2 additions and 3 deletions

View File

@ -13,7 +13,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up GNAT toolchain
run: >

View File

@ -31,7 +31,7 @@
------------------------------------------------------------------------------
with "libzmq.gpr";
project ZMQ is
for Languages use ("Ada", "Makefile", "Python", "Toml");
for Languages use ("Ada", "Makefile", "Python");
type ZMQ_Kind_Type is ("static", "relocatable");
ZMQ_Kind : ZMQ_Kind_Type := external ("LIBRARY_TYPE", "static");
@ -91,7 +91,6 @@ project ZMQ is
for Specification_Exceptions ("Makefile") use ("Makefile");
for Spec_Suffix ("sed") use ".sed";
for Body_Suffix ("Python") use ".py";
for Body_Suffix ("Toml") use ".toml";
for Implementation_Exceptions ("Python") use ("configure");
end Naming;
end ZMQ;