ADUL
Collection of reusable C++ utilities
|
What is ADUL? Now ADUL is just a compilation of some small utilities written by me or taken from other places. In theory they can be useful in any project
Main points:
Utilities:
Notes:
The documentation was generated via doxygen tool and Doxygen-Awesome theme
Documentation can be found in docs/html/index.
In documentation you can see also private and protected attributes and methods because I think that user should know more about how API he uses work under the hood and with such additional information it can be easier to understand the API functionality
I didn't want to add Doxygen-Awesome as dependency so just putted all necessary files into the doxytheme folder
To build the ADUL project using the provided CMakeLists.txt
, follow these steps:
Output will be in either build/lib or build/bin directories depending on your os
Use CMake options to control library types:
Install to a custom directory (e.g., $HOME/adul-install
):
After building, install headers and libraries to the system or a custom path:
/usr/local/include
(Linux/macOS)/usr/local/lib
/usr/local/bin
To use ADUL in your project, add this to your CMakeLists.txt
:
Set CMAKE_PREFIX_PATH
if ADUL is installed in a non-default location:
LD_LIBRARY_PATH
: ADUL.dll
in the same directory as your executable.This workflow supports cross-platform builds and allows you to integrate the library seamlessly into other CMake projects.
To-do and plans:
Possible plans:
This project is licensed under the MIT License.
MIT License
Copyright (c) 2025 Allivka
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
This project includes tinyxml2, which is licensed under the zlib License. See [LICENSE-TINYXML2](LICENSE-TINYXML2) for details.
See tinyxml2 online documentation
Changelog: Version 0.1.0: first release(at least I think so) with few little utilities inside