Hello, I have a small problem. I'm trying to compile my little nim file against the ggplotnim package. I created my package with nimble init and I pulled in the ggplotnim package with "nimble install ggplotnim", but when I try to compile the code with "nimble build -d:ssl" I get:
Verifying dependencies for virus@0.1.0
Building virus/virus using c backend
Tip: 1 messages have been suppressed, use --verbose to show them.
Error: Build failed for package: virus
... Details:
... Execution failed with exit code 1
... Command: "/Users/hasan/.nimble/bin/nim" c --noNimblePath -d:NimblePkgVersion=0.1.0 -d:ssl -o:"/Users/hasan/code/nim/virus/virus" "/Users/hasan/code/nim/virus/src/virus.nim"
And, it complains that it cannot find the ggplotnim file. The file does exist and if I run the compiler without the "--noNimblePath" flag it compiles:
" c -d:NimblePkgVersion=0.1.0 -d:ssl -o:"/Users/hasan/code/nim/virus/virus" "/Users/hasan/code/nim/virus/src/virus.nim"
I'm not sure why by default nimble is not following the path. Is there something that I need to do in my configuration to get this to work?
Many thanks, adil