Skip to content

Latest commit

 

History

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

README.md

File metadata and controls

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

# Debug, Release, RelWithDebInfo, MinSizeRel
BUILD_TYPE=Release

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

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

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