Symlinks
aleshaleksey opened this issue · 0 comments
aleshaleksey commented
There are several places in the code where include!("shared.rs")
or include!("../shared.rs")
are used. This in and of itself is fine.
What seems to cause problems is that the file itself is a symlink to file "shared.rs" which is in the package root which causes problems with on windows.
To fix this it is recommended that either an ogrim-shared
package is created, or the functions from the "shared.rs" file are manually copy-pasted into the modules where they are used. This branch already applies a fix here.