From 4f7c0dee4a0b1149c2b2684e5954bc60b5d4ed0d Mon Sep 17 00:00:00 2001 From: saq10002 Date: Thu, 22 Jan 2015 21:13:50 -0500 Subject: [PATCH] Update and rename Adding-New-Code-to-NEST.md to adding-new-code-to-nest.md --- Adding-New-Code-to-NEST.md => adding-new-code-to-nest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Adding-New-Code-to-NEST.md => adding-new-code-to-nest.md (99%) diff --git a/Adding-New-Code-to-NEST.md b/adding-new-code-to-nest.md similarity index 99% rename from Adding-New-Code-to-NEST.md rename to adding-new-code-to-nest.md index fbbff7b..8b78d03 100644 --- a/Adding-New-Code-to-NEST.md +++ b/adding-new-code-to-nest.md @@ -1,6 +1,6 @@ Adding New Code to NEST ======================= -This document assumes that the reader already knows [how to build NEST from source(Tips on Nest.md)]. +This document assumes that the reader already knows [how to build NEST from source(tips-on-nest.md)]. * If you want to add a new library inside NEST, createa a new directory inside ```nest/nest-2.6.0```. In my case, I created the directory ```nest/nest-2.6.0/nestgpu``` and wanted my new code to be inside the new library ```libnestgpu```. Inside this directory, you add your new source/header files. * However, your code is still not part of the NEST build system. To have your code be built with NEST, you need to do few more things.