Closed nanexcool closed 6 years ago
@nanexcool you will need to add the path for "lib" in the dependencies module and the contracts in "src". The original library was dappsys and that was the basis, so it has to work :)
I will post a sample ASAP of the settings.
"solidity.packageDefaultDependenciesContractsDirectory": "src", "solidity.packageDefaultDependenciesDirectory": "lib",
And the compilation using vscode
Thank you very much, that worked! I got confused because in the description I saw:
"Libraries will have the same name as their folder they are included. Solidity files will be in the 'src' folder. Libraries will be included in the 'lib' folder."
Thanks again!
Similar to #70
This is the tree for https://github.com/dapphub/ds-thing
It looks like it'd be correct for finding the files. For example under
src/thing.sol
there are three imports:These libraires are under
lib/ds-auth/src/auth.sol
etc...