Help with building a module

BlitzMax Forums/BlitzMax Programming/Help with building a module

William Drescher(Posted 2008) [#1]
What does it mean when I try to build my custom module and it says:
Compile Error
Module does not match commandline module


???


kfprimm(Posted 2008) [#2]
You have to call,
bmk makemods namespace.modulename

If you need some more help, you can reference Bot Builder's tutorial.


William Drescher(Posted 2008) [#3]
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.


Gabriel(Posted 2008) [#4]
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.


Otus(Posted 2008) [#5]
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