|
1 |
| -# fossil-sys |
| 1 | +# **Fossil Sys by Fossil Logic** |
| 2 | + |
| 3 | +Fossil Sys is a versatile, cross-platform utilities library designed to provide essential functionalities for high-performance system-level task development. It includes a suite of common utilities such as host system interaction, command execution, a cnullptr type definition, and secure memory management. Fossil Sys is implemented in both C and C++ and is optimized for consistency and efficiency across various operating systems. |
| 4 | + |
| 5 | +## Key Features |
| 6 | + |
| 7 | +1. **Cross-Platform Compatibility**: Provides a uniform interface and consistent behavior across major operating systems, including Windows, macOS, and Linux. |
| 8 | +2. **Modular Design**: Contains modular components that can be easily integrated and customized for specific project needs. |
| 9 | +3. **Efficient Build System**: Built using the Meson build system, which ensures fast build times and a straightforward development process. |
| 10 | +4. **High Performance**: Developed in C and C++ to maximize performance and resource efficiency, suitable for both desktop and embedded systems. |
| 11 | +5. **Extensive Documentation**: Offers comprehensive documentation and examples to help developers quickly understand and utilize the library. |
| 12 | + |
| 13 | +## Prerequisites |
| 14 | + |
| 15 | +Before using Fossil Sys, ensure you have the following: |
| 16 | + |
| 17 | +- **Meson Build System**: Install Meson to manage the build process. For installation or upgrading, use: |
| 18 | + |
| 19 | + ```sh |
| 20 | + python -m pip install meson # to install Meson |
| 21 | + python -m pip install --upgrade meson # to upgrade Meson |
| 22 | + ``` |
| 23 | + |
| 24 | +## Adding Dependency |
| 25 | + |
| 26 | +1. **Install Meson Build System**: Ensure Meson `1.3` or newer is installed on your system. |
| 27 | + |
| 28 | +2. **Add Wrap File**: Create a `.wrap` file (e.g., `fossil-sys.wrap`) in the `subprojects` directory with the following content: |
| 29 | + |
| 30 | + ```ini |
| 31 | + # ====================== |
| 32 | + # Git Wrap package definition |
| 33 | + # ====================== |
| 34 | + [wrap-git] |
| 35 | + url = https://github.com/fossillogic/fossil-sys.git |
| 36 | + revision = v0.1.0 |
| 37 | + |
| 38 | + [provide] |
| 39 | + fossil-sys = fossil_sys_dep |
| 40 | + ``` |
| 41 | + |
| 42 | +3. **Integrate Dependency**: Add the dependency in your `meson.build` file: |
| 43 | + |
| 44 | + ```ini |
| 45 | + dep = dependency('fossil-sys') |
| 46 | + ``` |
| 47 | + |
| 48 | +## Configure Options |
| 49 | + |
| 50 | +- **Running Tests**: Enable testing by configuring with `-Dwith_test=enabled`. |
| 51 | + |
| 52 | +Example: |
| 53 | + |
| 54 | +```sh |
| 55 | +meson setup builddir -Dwith_test=enabled |
| 56 | +``` |
| 57 | + |
| 58 | +## Contributing and Support |
| 59 | + |
| 60 | +For contributions, issues, or support, please open an issue on the project repository or visit the [Fossil Logic Docs](https://fossillogic.com/docs) for more information. Contributions and feedback are always appreciated. |
0 commit comments