https://github.com/AdaCore/wposix
Ada Windows POSIX binding
https://github.com/AdaCore/wposix
Last synced: 3 months ago
JSON representation
Ada Windows POSIX binding
- Host: GitHub
- URL: https://github.com/AdaCore/wposix
- Owner: AdaCore
- License: other
- Created: 2017-06-08T11:43:19.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T21:38:50.000Z (12 months ago)
- Last Synced: 2024-07-31T20:44:42.443Z (10 months ago)
- Language: Ada
- Size: 378 KB
- Stars: 4
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING.RUNTIME
Awesome Lists containing this project
- awesome-ada - wposix - Ada Windows POSIX binding. (Libraries / Linux and POSIX)
README
wPOSIX
======wPOSIX run only on Windows. This library requires Win32Ada to be
installed first.Installation
------------To configure, compile and install wPOSIX (requires Cygwin):
```
$ make setup
$ make
$ make install
```This will install wPOSIX into the current GNAT compiler standard
location.To configure, compile and install wPOSIX from Windows command shell:
```
c:> install c:\gnatpro\6.3.1
```Usage
-----To include wPOSIX into your application you just need to import
the wPOSIX project file.```
with "wposix.gpr";
project Proj is
...
end Proj;
```