I'm building an app and I wanted a part of my app create as a library (to chunk 
big problem into smaller problems)...

So I thought I'd create `mylib` library and import it in `myapp`...

I have built and installed my library package `mylib` using:

  * `nimble build` => ok
  * `nimble install` => ok



I can list my library with:

  * `nimble list -i` => ok



However I don't see it with:

  * `nimble list` => NOK?



In `myapp` I can use published libraries (via import) when defined in 
`myapp.nimble`, I have set the:
    
    
    requires "somepublishedlib == 1.2.3"
    requires "mylib == 0.1.0"
    
    
    Run

But I can't use my locally built and installed `mylib` the same way.

I can see that there is a symlink pointing to the existing mylib file => so the 
file exists.

But when I run `nimble build` for `myapp` => I get File not found error for 
`mylib`

Any hints?

Reply via email to