Help with building a module
BlitzMax Forums/BlitzMax Programming/Help with building a module| 
 | ||
| What does it mean when I try to build my custom module and it says:  Compile Error Module does not match commandline module ??? | 
| 
 | ||
| You have to call, bmk makemods namespace.modulename If you need some more help, you can reference Bot Builder's tutorial. | 
| 
 | ||
| That's the command I did and it gave me the above error. And yes, I'm on Vista and it was with dlevated privileges. | 
| 
 | ||
| It means you've written your custom module incorrectly. You either have a module name which doesn't match the folder you've put it in, or you have a name with capital letters or spaces, or something like that. Also, a typo when compiling would do it. It never says "file not found", it would give this error message you're getting. | 
| 
 | ||
| Ensure the module location matches the Module declaration. Eg. you have a module at mod/my.mod/test.mod/test.bmx - it must have the declaration: Module my.test |