Skip to content

GlitchyByte general C++ library to bootstrap development.

License

Notifications You must be signed in to change notification settings

GlitchyByte/gblib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GlitchyByte C++ General Purpose Library

WORK IN PROGRESS - WORK IN PROGRESS - WORK IN PROGRESS

Version Version

Converting embedded gblib I was using in other projects to a header-only library.

Include in your CMakeLists.txt:

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)

About

GlitchyByte general C++ library to bootstrap development.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published