Hi Allen,Below I show how I adapted/complied the example MyModule included on github and the error message I get (bottom of email).The steps look generally good.two absolute paths inserted (correct missing file error):#include "/home/nest/work/nest-simulator-2.18.0/sli/slifunction.h"#include "/home/nest/work/nest-simulator-2.18.0/sli/slimodule.h"You should not need the absolute paths, just the filenames should suffice.$ cd mmb$ cmake -Dwith-nest=${NEST_INSTALL_DIR}/bin/nest-config ../My2Module$ makeCould you post the output of the cmake command?And also the output of the following command${NEST_INSTALL_DIR}/bin/nest-config --prefix --includes --libs --cflagsBest,Hans Ekkehard*************************ERROR MSG***make: *** No targets specified and no makefile found. Stop.********************************************* changed directory from ./mmb to ./My2Module then re-ran make*****$ cd ~ examples/My2Module$ make***************'**********ERROR MSG****Scanning dependencies of target my2module_module[ 10%] Building CXX object CMakeFiles/my2module_module.dir/my2module.cpp.oIn file included from /home/nest/examples/My2Module/my2module.cpp:29:0:/home/nest/examples/My2Module/drop_odd_spike_connection.h:27:10: fatal error: connection.h: No such file or directory #include "connection.h"*******************************************On Wed, May 6, 2020 at 2:33 AM Hans Ekkehard Plesser <hans.ekkehard.plesser@nmbu.no> wrote:Hi Allen,Several steps are required to add a model to NEST. The recommended way of adding a model is to create your own NEST module outside the NEST source code tree. You will find an example in examples/MyModule and more documentation at https://nest.github.io/nest-simulator/extension_modules.Placing code for custom models in the models directory in the NEST source code tree also works, but makes it more difficult to move to newer versions of NEST or to share your custom models with colleagues.Briefly, in addition to adding the source code files to the models directory, you need to1. add the files to models/CMakeLists.txt2. #include the files in models/modelsmodule.cpp3. add a line likeregister_connection_model< StaticConnection >( "static_synapse" );for each model. The template parameter is the model class, the string the name it will have in NEST4. recompile and reinstall NESTBest,Hans EkkehardOn 6 May 2020, at 02:11, Allen Rabayda <arabayda@masonlive.gmu.edu> wrote:Dear Nest Community,Would anyone have insight into why I'm getting an UnknownModelName error?I'm new to Nest and am using Nest 18.0 on Lubuntu Virtual Box (Windows 10 OS).Thanks for any help.Best Regards,--Allen**** Error Message--additional details attached ******raise exceptionCls(commandname, message)nest.ll_api.UnknownModelName: ('UnknownModelName in CopyModel_l_l_D: /stdp_izh_bitwise_correct_connection is not a known model name. Please check the modeldict for a list of available models.', 'UnknownModelName', <SLILiteral: CopyModel_l_l_D>, ': /stdp_izh_bitwise_correct_connection is not a known model name. Please check the modeldict for a list of available models.')********************************************************<issue_UnknownModelName_4_May_2020>_______________________________________________NEST Users mailing list -- users@nest-simulator.orgTo unsubscribe send an email to users-leave@nest-simulator.org--Prof. Dr. Hans Ekkehard PlesserHead, Data Science SectionFaculty of Science and TechnologyNorwegian University of Life SciencesPO Box 5003, 1432 Aas, NorwayPhone +47 6723 1560_______________________________________________NEST Users mailing list -- users@nest-simulator.orgTo unsubscribe send an email to users-leave@nest-simulator.org_______________________________________________NEST Users mailing list -- users@nest-simulator.orgTo unsubscribe send an email to users-leave@nest-simulator.org--Prof. Dr. Hans Ekkehard PlesserHead, Data Science SectionFaculty of Science and TechnologyNorwegian University of Life SciencesPO Box 5003, 1432 Aas, NorwayPhone +47 6723 1560Email hans.ekkehard.plesser@nmbu.no_______________________________________________NEST Users mailing list -- users@nest-simulator.orgTo unsubscribe send an email to users-leave@nest-simulator.org