cplings
Small exercises to get you used to reading and writing C++ code!
File Explorer
Download Latest Version (.zip)- CPM.cmake
- CMakeLists.txt
- variables1.cpp
- variables2.cpp
- variables3.cpp
- variables4.cpp
- variables5.cpp
- variables6.cpp
- variables7.cpp
- variables8.cpp
- CMakeLists.txt
- functions1.cpp
- functions2.cpp
- functions3.cpp
- functions4.cpp
- functions5.cpp
- functions6.cpp
- README.md
- CMakeLists.txt
- if1.cpp
- if2.cpp
- README.md
- CMakeLists.txt
- pointers_references1.cpp
- pointers_references2.cpp
- classes1.cpp
- classes2.cpp
- classes3.cpp
- classes4.cpp
- CMakeLists.txt
- CMakeLists.txt
- raii1.cpp
- raii2.cpp
- README.md
- CMakeLists.txt
- containers1.cpp
- containers2.cpp
- containers3.cpp
- README.md
- CMakeLists.txt
- ownership1.cpp
- ownership2.cpp
- ownership3.cpp
- ownership4.cpp
- ownership5.cpp
- ownership6.cpp
- README.md
- CMakeLists.txt
- README.md
- templates1.cpp
- templates2.cpp
- templates3.cpp
- templates4.cpp
- templates5.cpp
- templates6.cpp
- templates7.cpp
- CMakeLists.txt
- README.md
- security1.cpp
- security2.cpp
- security3.cpp
- security4.cpp
- variables1.md
- variables2.md
- variables3.md
- variables4.md
- variables5.md
- variables6.md
- variables7.md
- variables8.md
- functions1.md
- templates5.md
- security1.md
- security2.md
- security3.md
- security4.md
- backward_compatibility.hpp
- borland.hpp
- concept_def.hpp
- concept_undef.hpp
- general.hpp
- has_constraints.hpp
- msvc.hpp
- assert.hpp
- requires.hpp
- usage.hpp
- static_assert.hpp
- main_tester.cpp
- .gitignore
- CMakeLists.txt
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/rdjondo/cplings
Downloads the entire project code from GitHub to your computer.
cd cplings
Moves into the project folder you just downloaded.
2. Official Install Script
Easy RecommendedPrerequisites
- APT (Debian/Ubuntu κ³μ΄) Built into Debian/Ubuntu-based Linux distributions.
sudo apt install g++ cmake make gdb git libasan8
Installs directly from the APT package repository (Debian/Ubuntu-based).
After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.
Pulled directly from this repo's README.
3. CMake
MediumPrerequisites
sudo apt install g++ cmake make gdb git libasan8
Installs directly from the APT package repository (Debian/Ubuntu-based).
sudo dnf install gcc-c++ cmake make gdb git libasan
Type this command into your terminal and run it.
cmake . -B build
Type this command into your terminal and run it.
cmake --build build --parallel $(nproc)
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)
