You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, creating lib project using init-lib doesn't provide a way for users to test C3 libraries, a current solution is to create such project.json:
{
"dependency-search-paths": [".."], /* somehow this works */"dependencies": ["name"],
"test-sources": [ "test/**" ],
"targets": {
"foo": { /* a blank target */"type": "executable"
}
}
}
{ "dependency-search-paths": [".."], /* somehow this works */ "dependencies": ["name"], "test-sources": [ "test/**" ], "targets": { "foo": { /* a blank target */ "type": "executable" } } }