init repository

This commit is contained in:
Robert Jeutter 2022-01-01 21:37:12 +01:00
parent 8de0e8d54a
commit 010f67b881
2 changed files with 92 additions and 0 deletions

83
.gitignore vendored Normal file
View File

@ -0,0 +1,83 @@
# Prerequisites
*.d
# Object files
*.o
*.ko
*.obj
*.elf
*.slo
*.lo
*.o
# Linker output
*.ilk
*.map
*.exp
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
# Precompiled Headers
*.gch
*.pch
# Fortran module files
*.mod
*.smod
# Compiled Dynamic libraries
*.so
*.so.*
*.dylib
*.dll
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# CMAKE
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
# Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
_deps
# Meson
/build
/builddir
/dist
.ninja_deps
.ninja_log
# VS Code
*.code-workspace
*.vscode

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# C++ Playground
This little repository hosts different small projects written in C++.
Each project works standalone and only requires the files inside its folder. Some projects require the global include-folder for common or shared libraries.
All projects are build and tested on linux
- [C++ with GCC](GCC%20Intro/readme.md)
- [C++ with Meson](Meson%20Intro/readme.md)