From 7ea0f8d749fea33949ff7379dac826dcf302ca13 Mon Sep 17 00:00:00 2001 From: Nigel Date: Sun, 29 Oct 2023 11:59:11 +0100 Subject: [PATCH] Updated README Signed-off-by: Nigel --- .idea/vcs.xml | 6 ++++++ README.md | 15 +++++++++++++++ README.txt | 4 ---- 3 files changed, 21 insertions(+), 4 deletions(-) create mode 100644 .idea/vcs.xml create mode 100644 README.md delete mode 100644 README.txt diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..fc0a426 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# CMake Tutorial + + +### Reasoning +Cmake is too popular to ignore. +Many crossplatform projects written in C and C++ use cmake as their buildtool of choice. +As this is the case I feel I need to integrate and become more comfortable with CMake myself. + +[cmake.org tutorial](https://cmake.org/cmake/help/latest/guide/tutorial/A%20Basic%20Starting%20Point.html) + +### What is in this repository +This directory contains source code examples for the CMake Tutorial. +Each step has its own subdirectory containing code that may be used as a +starting point. The tutorial examples are progressive so that each step +provides the complete solution for the previous step. diff --git a/README.txt b/README.txt deleted file mode 100644 index bc30679..0000000 --- a/README.txt +++ /dev/null @@ -1,4 +0,0 @@ -This directory contains source code examples for the CMake Tutorial. -Each step has its own subdirectory containing code that may be used as a -starting point. The tutorial examples are progressive so that each step -provides the complete solution for the previous step.