https://github.com/mikolasan/cpp-by-example
Small C++ snippets playing with core language functionality
https://github.com/mikolasan/cpp-by-example
cpp-course cpp-programming cpp17 cpp20
Last synced: 10 months ago
JSON representation
Small C++ snippets playing with core language functionality
- Host: GitHub
- URL: https://github.com/mikolasan/cpp-by-example
- Owner: mikolasan
- License: mit
- Created: 2021-11-01T14:44:59.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-12T22:10:30.000Z (about 1 year ago)
- Last Synced: 2025-01-13T06:45:03.911Z (12 months ago)
- Topics: cpp-course, cpp-programming, cpp17, cpp20
- Language: C++
- Homepage: https://cpp-by-example.netlify.app/
- Size: 17.3 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C++ by example



A collection of code snippets in C++ language
## Optional dependencies
### LLVM
```
git submodule add https://github.com/llvm/llvm-project.git thirdparty/llvm
git checkout llvmorg-16.0.0
cd thirdparty
cmake -S llvm\llvm -B llvm-build --install-prefix="C:\Users\neupo\develop\cpp-skill\thirdparty\windows\LLVM" -DLLVM_ENABLE_PROJECTS=clang -DLLVM_TARGETS_TO_BUILD=X86 -Thost=x64
cmake --build llvm-build --config Release
cmake --install llvm-build
```
### Lua
Add to user environment variables
```
Lua51_ROOT = "C:\\windows\lua"
```
## Build
```
cmake -DCMAKE_BUILD_TYPE=Release -S . -B build
cmake --build build --target all
```