Cross-Platform Modern C++ Utility Library
- Modern C++ based
- Cross-platform
- UTF-8 support
- Isolation platform related
- Independence between modules
- ZxJson :
json library - ZxHook :
x86 hooking wrapper - ZxArg :
command line parser - ZxFile :
file stream - ZxFS :
file system - ZxCvt :
text converter - ZxINI :
ini parser - ZxMem :
memory stream - Zx32 :
win32 api utf8 wrapper
-
CMake
please make sure that the cmake minimum required is greater than 3.20.
... include(FetchContent) FetchContent_Declare( ZxFile GIT_REPOSITORY https://github.com/ZQF-Zut/ZxFile.git GIT_TAG df311de7938fdd9ba7b3db185e2bb2e1c44166ca) # the commit hash FetchContent_MakeAvailable(ZxFile) ... target_link_libraries(hello_zut PRIVATE Zut::ZxFile)