https://github.com/glitchybyte/gblib
GlitchyByte general C++ library to bootstrap development.
https://github.com/glitchybyte/gblib
cpp
Last synced: 3 months ago
JSON representation
GlitchyByte general C++ library to bootstrap development.
- Host: GitHub
- URL: https://github.com/glitchybyte/gblib
- Owner: GlitchyByte
- License: apache-2.0
- Created: 2024-07-30T04:51:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-23T00:13:23.000Z (almost 2 years ago)
- Last Synced: 2025-03-19T07:51:35.395Z (over 1 year ago)
- Topics: cpp
- Language: C++
- Homepage:
- Size: 195 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# GlitchyByte C++ General Purpose Library
### **WORK IN PROGRESS** - **WORK IN PROGRESS** - **WORK IN PROGRESS**


## Check the documentation
[Read the docs](https://glitchybyte.github.io/gblib/).
## Include it in your project
You can simply copy `include/glitchybyte` directory into your project.
Or you can include it remotely with *FetchContent*.
Include in your `CMakeLists.txt`:
```cmake
include(FetchContent)
# GBLib.
FetchContent_Declare(
gblib
GIT_REPOSITORY https://github.com/glitchybyte/gblib
GIT_TAG main
)
FetchContent_MakeAvailable(gblib)
# ...and then add it to your `target_link_libraries`:
# Use PUBLIC or PRIVATE if it's a final binary.
target_link_libraries(${PROJECT_NAME} PRIVATE gblib)
# Use INTERFACE if it's a library.
target_link_libraries(${PROJECT_NAME} INTERFACE gblib)
```
In your code:
```cpp
#include
```