decimal_for_cpp
Decimal data type for C++
File Explorer
Download Latest Version (.zip)- action.yml
- decimal.cbp
- readme.txt
- license.txt
- decimal.h
- decimalTest.cpp
- decimalTestAbout.cpp
- decimalTestArithmetic.cpp
- decimalTestDiv.cpp
- decimalTestEdgeCases.cpp
- decimalTestModulo.cpp
- decimalTestMult.cpp
- decimalTestMultDiv.cpp
- decimalTestRounding.cpp
- decimalTestRoundOth.cpp
- decimalTestString.cpp
- decimalTestTypeLevel.cpp
- decimalTestUtils.cpp
- decimalTestUtils.h
- decimalTestWithExponent.cpp
- runner.cpp
- CMakeLists.txt
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/vpiotr/decimal_for_cpp
Downloads the entire project code from GitHub to your computer.
cd decimal_for_cpp
Moves into the project folder you just downloaded.
2. CMake
Medium RecommendedPrerequisites
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
cmake -DBUILD_TESTING=ON ..
Type this command into your terminal and run it.
cmake -DBUILD_TESTING=OFF ..
Type this command into your terminal and run it.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
