https://github.com/jchristopherson/fsys
This is a Fortran library containing system operations and supporting types.
https://github.com/jchristopherson/fsys
fortran fortran-package-manager fpm regular-expressions string-manipulation strings
Last synced: 4 months ago
JSON representation
This is a Fortran library containing system operations and supporting types.
- Host: GitHub
- URL: https://github.com/jchristopherson/fsys
- Owner: jchristopherson
- License: gpl-3.0
- Created: 2023-11-07T16:54:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-24T18:04:16.000Z (almost 2 years ago)
- Last Synced: 2025-10-23T20:49:53.970Z (8 months ago)
- Topics: fortran, fortran-package-manager, fpm, regular-expressions, string-manipulation, strings
- Language: Fortran
- Homepage:
- Size: 801 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fsys
FSYS is a Fortran library containing system operations and supporting types.
## Status

## Documentation
Documentation can be found [here](https://jchristopherson.github.io/fsys/)
## Building FSYS
[CMake](https://cmake.org/) can be used to build this library. Use -DBUILD_TESTING=TRUE only if tests are desired. If tests are not to be built, then simply omit -DBUILD_TESTING. The default is a release build static library.
```txt
cd build
cmake ../build -DBUILD_TESTING=TRUE
make
```
For more detailed instructions see [Running CMake](https://cmake.org/runningcmake/).
## Dependencies
The FSYS library depends upon the following libraries.
- [FSTRING](https://github.com/jchristopherson/fstring)