Glaze Installation Guide¶
This guide covers some of the ways to install and integrate the Glaze JSON library into your C++ project. There are lots of packaged versions of Glaze, from homebrew to Conan.
System Requirements¶
Compiler Support¶
- C++23 standard required
- Clang 17+
- GCC 12+
- MSVC 2022+
- Apple Clang (latest Xcode)
Platform Support¶
- Architecture: 64-bit and 32-bit
- Endianness: Little-endian systems only
- Operating Systems: Windows, Linux, macOS
MSVC Specific Requirements¶
When using MSVC, you must use the /Zc:preprocessor flag for C++ standard conformant preprocessing:
Installation Methods¶
1. CMake FetchContent (Recommended)¶
Add the following to your CMakeLists.txt:
include(FetchContent)
FetchContent_Declare(
glaze
GIT_REPOSITORY https://github.com/stephenberry/glaze.git
GIT_TAG main
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(glaze)
target_link_libraries(${PROJECT_NAME} PRIVATE glaze::glaze)
Using a Specific Version¶
For production use, it's recommended to pin to a specific version:
FetchContent_Declare(
glaze
GIT_REPOSITORY https://github.com/stephenberry/glaze.git
GIT_TAG v5.0.0 # Replace with desired version
GIT_SHALLOW TRUE
)
2. Conan Package Manager¶
Glaze is available in Conan Center.
conanfile.txt¶
CMakeLists.txt¶
Command Line Installation¶
3. build2 Package Manager¶
Glaze is available on cppget.
manifest¶
buildfile¶
4. Linux Package Managers¶
Arch Linux¶
Ubuntu/Debian (Manual)¶
# Install dependencies
sudo apt-get update
sudo apt-get install build-essential cmake git
# Clone and install
git clone https://github.com/stephenberry/glaze.git
cd glaze
mkdir build && cd build
cmake ..
sudo make install
5. Manual Installation¶
Download and Extract¶
# Download latest release
wget https://github.com/stephenberry/glaze/archive/refs/tags/v5.0.0.tar.gz
tar -xzf v5.0.0.tar.gz
cd glaze-5.0.0
Header-Only Integration¶
Since Glaze is header-only, you can simply:
- Copy the
include/directory to your project - Add the include path to your compiler flags:
CMake Configuration Options¶
SIMD Support¶
AVX2 SIMD instructions are automatically enabled when the compiler detects AVX2 support (the GLZ_USE_AVX2 macro is defined automatically when __AVX2__ is available).
Disable SIMD (Cross-compilation)¶
For cross-compilation to ARM or other architectures, disable SIMD optimizations:
Or define the macro directly before including Glaze headers:
Disable Forced Inlining¶
By default, Glaze uses compiler-specific attributes (__attribute__((always_inline)) on GCC/Clang, [[msvc::forceinline]] on MSVC) to force inlining of performance-critical functions. This maximizes runtime performance but increases compilation time.
To disable forced inlining:
Or define the macro directly before including Glaze headers:
When disabled, GLZ_ALWAYS_INLINE and GLZ_FLATTEN fall back to regular inline hints, allowing the compiler to make its own inlining decisions. This is useful when:
- Compilation time is a priority
- You're building for debug or development purposes
- Peak runtime performance is not critical
[!NOTE] This option primarily reduces compilation time, not binary size. Modern compilers typically inline hot paths anyway using their own heuristics, so binary size reduction is often minimal. For significant binary size reduction, use the
linear_searchoption instead (see Optimizing Performance).
Optional Dependencies¶
The core Glaze library (JSON, BEVE, CSV, TOML serialization) is header-only with no external dependencies.
Networking Features¶
For HTTP server/client, WebSocket, and RPC features, you need:
- ASIO - Either standalone ASIO or Boost.Asio
- OpenSSL (optional) - For HTTPS and secure WebSocket (wss://) support
See the ASIO Setup Guide for detailed instructions on: - Installing and configuring ASIO - CMake integration - SSL/TLS setup - Platform-specific configuration
Example Project Setup¶
Complete CMakeLists.txt Example¶
cmake_minimum_required(VERSION 3.20)
project(MyGlazeProject LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
include(FetchContent)
FetchContent_Declare(
glaze
GIT_REPOSITORY https://github.com/stephenberry/glaze.git
GIT_TAG main
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(glaze)
add_executable(myapp main.cpp)
target_link_libraries(myapp PRIVATE glaze::glaze)
# MSVC specific flag
if(MSVC)
target_compile_options(myapp PRIVATE /Zc:preprocessor)
endif()
Getting Help¶
- Documentation: GitHub Docs
- Issues: GitHub Issues
- Example Repository: Glaze Example
Next Steps¶
After installation, check out: - Basic Usage Examples