Skip to content

Instantly share code, notes, and snippets.

@gmpreussner
Created April 11, 2015 18:30
Show Gist options
  • Save gmpreussner/df7705a7c2c3c57f0e62 to your computer and use it in GitHub Desktop.
Save gmpreussner/df7705a7c2c3c57f0e62 to your computer and use it in GitHub Desktop.
framework
packageA
bin
docs
src
module1.nim
module2.nim
module3.nim
tests
tmodule1.nim
tmodule2.nim
tmodule3.nim
all.nim
packageB
bin
docs
src
module4.nim ## requires module1
module5.nim ## requires module3
module6.nim
tests
tmodule4.nim
tmodule5.nim
tmodule6.nim
all.nim
packageC
bin
docs
src
module7.nim ## requires module2, module6
module8.nim ## requires module1, module5
module9.nim
tests
tmodule7.nim
tmodule8.nim
tmodule9.nim
all.nim
programs
programA
src
module10.nim ## requires module1, module4, module7
programB
src
module11.nim ## requires module2
programC
src
module12.nim ## requires module5, module8
@gmpreussner
Copy link
Author

import packageName/module

This I cannot get to work. I can do "import module", and it happens to find the right one (by accident?), but I cannot qualify the import with a package name, at least not in conjunction with --NimblePath: "Error cannot open 'packageName/module'"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment