From c76236dc8be40f6798774282fb83a0543b625970 Mon Sep 17 00:00:00 2001 From: Timothy Helton Date: Sat, 30 Dec 2017 17:22:55 -0700 Subject: [PATCH] ENH: add git address to README (cherry picked from commit 3f0cb09) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2254bef..90aed4d 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Feel free to fork this repository and tailor it to suit you. ## Procedure 1. Clone the Repository ```bash - git clone + git clone https://github.com/TimothyHelton/cpp_project_template ``` 1. In the top level **CMakeLists.txt**: 1. Line 2: Change the variable **MyProject** to the name of your project. @@ -25,7 +25,7 @@ Feel free to fork this repository and tailor it to suit you. - MyProject_run: will be the main executable name - MyProject_lib: will be the project library name 1. Line 4: Set the version of C++ to use. For example, let's set up the - CoolProject to use C++ 11. + NewProject to use C++ 11. ```cmake set(CMAKE_CXX_STANDARD 11) ```