This repository represents the Lynar Studios - Standard Library (ls-std).
Patrick-Christopher Mattulat 22c7ac1c28 Fix std namespace usage on whole library scope | před 2 roky | |
---|---|---|
config | před 3 roky | |
doc | před 3 roky | |
include | před 2 roky | |
source | před 2 roky | |
test | před 2 roky | |
.gitignore | před 4 roky | |
CMakeLists.txt | před 2 roky | |
LICENSE.MIT | před 4 roky | |
README.md | před 2 roky |
This is a cross-platform standard library written in C++ offering functionalities you'd usually miss in C++'s standard template library (STL), especially if you'd search for cross-platform implementations. This library has been tested on Windows, Linux and MacOS systems. Following a modularized approach the following submodules are defined in scope of this library, which are independent:
This library module provides boxing classes for primitive data types (e.g. string, int, long, float...) to add additional functionalities for each one of them.
The core module is a base module providing a base Class, exceptions, data types and interfaces. Usually the other submodules are dependent on this module.
To encode a byte field (e.g. binaries) for transfer the Base64 encoding / decoding functionality is being provided by this submodule as a first feature.
This submodule comes with an Event class, as well as with handlers and managers to provide an intuitive event managing for your application.
To handle file operations - or to receive information of a file - this library submodule provides an own File class implementation, which can also be passed to library implemented input or output stream classes.
Additionally XML and KV parsing functionalities are provided by this submodule.
Functionalities provided by this submodule support your project with some nice logical features. The first one being provided by it is a state machine.
A Date class comes with this submodule, which you can use to represent a date and do operations on it.
You can find a detailed documentation on Lynar Studios Website: lynarstudios.com
This software is licensed and uses MIT-license. You can find a LICENSE.MIT file inside the project's root directory.
To build this library you'd need a recent version of cmake and your OS specific compiler collection, like gcc, MSVC or AppleClang installed.
Inside project's root directory create the following folder:
cmake_build_release
Open your OS specific command line window and navigate to this new folder and run the following command to configure the project and generate a native build system:
cmake ../
Inside cmake_build_release folder you will now find cmake generated files. To compile the library now, just run:
cmake --build . --config Release
If you would like to add this library to your cmake project - to the CMakeLists.txt file - make sure that you add the libraries' include directory:
include_directories(${CMAKE_CURRENT_LIST_DIR}/path/to/this/library/include)
Then link the library binary file inside your CMakeLists.txt file:
target_link_libraries(... "path/to/this/library/../libls_std_YYYY.MAJOR.MINOR.dll")
This project contains unit tests to provide test coverage.
To run those tests you have to build this project with option LS_STD_BUILD_WITH_TESTS set to ON.