Compare commits

..

No commits in common. "9daf463fab949ab6fa66414e6f40735b5254a95b" and "e5a5cd758df608cdacbeca764284104dddd1f9fd" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -301,13 +301,13 @@ Or if you want to manually create the symlink use:
# linux
cd internal/native/cgo
rm ui
ln -s ../eez/src/ui ui
ln -s ui ../eez/src/ui
```
```dos
rem Windows
cd internal/native/cgo
del ui
mklink /d ui ..\eez\src\ui
mklink /d ui ../eez/src/ui
```
---