From 1895f37d81f73b6322d0ec63fcd85ce5c50cacd8 Mon Sep 17 00:00:00 2001 From: surtur Date: Sat, 31 Oct 2020 12:47:08 +0100 Subject: [PATCH] initial commit --- .gitignore | 19 +++++++++++++++++++ CMakeLists.txt | 3 +++ README.md | 3 +++ bit-ops.c | 6 ++++++ 4 files changed, 31 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 README.md create mode 100644 bit-ops.c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cec84b3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +### CMake ### +CMakeLists.txt.user +CMakeCache.txt +CMakeFiles +CMakeScripts +Testing +Makefile +cmake_install.cmake +install_manifest.txt +compile_commands.json +CTestTestfile.cmake +_deps + +### CMake Patch ### +# External projects +*-prefix/ + +*.swp +bit-ops diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3af9a7a --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,3 @@ +cmake_minimum_required(VERSION 3.8) +project (bit-ops) +add_executable(bit-ops bit-ops.c) diff --git a/README.md b/README.md new file mode 100644 index 0000000..5aa26f4 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# bit-ops + +this repo holds sawce for a bit-wise operations fun little program diff --git a/bit-ops.c b/bit-ops.c new file mode 100644 index 0000000..90412d6 --- /dev/null +++ b/bit-ops.c @@ -0,0 +1,6 @@ +#include + +int main() { + printf("*** bit-ops pls ***\n"); + return 0; +}