https://github.com/prophetru/sparsematrix
Educational project
https://github.com/prophetru/sparsematrix
cmake cpp doxygen gtest otus
Last synced: about 1 year ago
JSON representation
Educational project
- Host: GitHub
- URL: https://github.com/prophetru/sparsematrix
- Owner: ProphetRu
- License: apache-2.0
- Created: 2024-02-23T13:58:46.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-23T14:05:07.000Z (over 2 years ago)
- Last Synced: 2025-02-17T22:34:47.358Z (over 1 year ago)
- Topics: cmake, cpp, doxygen, gtest, otus
- Language: C++
- Homepage:
- Size: 177 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sparse Matrix
Educational project with [googletest](https://github.com/google/googletest) and [doxygen](https://github.com/doxygen/doxygen)
## Build local Linux
```shell
sudo apt-get update && sudo apt-get install cmake libgtest-dev -y
cd SparseMatrix
mkdir build && cd build
cmake ..
# build release
cmake --build . --config Release
# build deb-package
cmake --build . --target package
```
## Build local Windows
```shell
vcpkg install gtest
vcpkg integrate install
cd SparseMatrix
mkdir build && cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE="path/to/vcpkg/scripts/buildsystems/vcpkg.cmake"
# build release
cmake --build . --config Release
```