Skip to content

Latest commit

 

History

History
executable file
·
27 lines (22 loc) · 656 Bytes

README.md

File metadata and controls

executable file
·
27 lines (22 loc) · 656 Bytes
# Target system processor
SYSTEM_PROCESSOR=x64

# Debug, Release, RelWithDebInfo, MinSizeRel
BUILD_TYPE=Release

git clone https://github.com/ahfakt/Stream.git

# Configure
mkdir build && cd Stream
cmake \
    -B../build/${SYSTEM_PROCESSOR}/${BUILD_TYPE}/Stream \
    -DCMAKE_BUILD_TYPE:STRING=${BUILD_TYPE} \
    -G "Unix Makefiles"

# Build
# Stream | Stream_Doc
# Test targets are available only when BUILD_TYPE=Debug
# Documentation is available only when BUILD_TYPE=Release
cmake \
    --build ../build/${SYSTEM_PROCESSOR}/${BUILD_TYPE}/Stream \
    --config ${BUILD_TYPE} \
    --target all