From 010f67b881a4b4c78904977e59c5d5ed28b168d1 Mon Sep 17 00:00:00 2001 From: Robert Jeutter Date: Sat, 1 Jan 2022 21:37:12 +0100 Subject: [PATCH] init repository --- .gitignore | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 9 ++++++ 2 files changed, 92 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..92d637f --- /dev/null +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..4729af7 --- /dev/null +++ b/README.md @@ -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) \ No newline at end of file