style: reformat readme
This commit is contained in:
parent
a42b6eb449
commit
3447bac6e5
22
README.md
22
README.md
|
|
@ -1,7 +1,10 @@
|
||||||
# Textractor TCP-Sender
|
# Textractor TCP-Sender
|
||||||
[Textractor](https://github.com/Artikash/Textractor) extension that sends sentences over TCP.
|
|
||||||
Useful for setups where the clipboard is not enough.
|
[Textractor](https://github.com/Artikash/Textractor) extension that sends
|
||||||
See [here](https://github.com/45Tatami/native-inserter) for an example of the receiving server side.
|
sentences over TCP. Useful for setups where the clipboard is not enough.
|
||||||
|
|
||||||
|
See [here](https://github.com/45Tatami/native-inserter) for an example of the
|
||||||
|
receiving server side.
|
||||||
|
|
||||||
Configuration done at runtime via interface.
|
Configuration done at runtime via interface.
|
||||||
|
|
||||||
|
|
@ -9,26 +12,23 @@ Configuration done at runtime via interface.
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
Requires Visual Studio 2019 or meson. Drop into VS, build x86 or x64 depending on which Textractor architecture you use.
|
Requires Visual Studio 2019 or meson. Drop into VS, build x86 or x64 depending
|
||||||
Drop resulting dll into Textractor extension window.
|
on which Textractor architecture you use. Drop the resulting dll into
|
||||||
|
Textractor extension window.
|
||||||
|
|
||||||
### meson
|
### meson
|
||||||
|
|
||||||
```
|
|
||||||
meson setup build
|
meson setup build
|
||||||
ninja -Cbuild
|
ninja -Cbuild
|
||||||
```
|
|
||||||
|
|
||||||
Project includes example cross-compilation definition files for a mingw32 toolchain under `cross`.
|
Project includes example cross-compilation definition files for a mingw32
|
||||||
|
toolchain under `cross`.
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
# x86/32bit
|
# x86/32bit
|
||||||
meson setup --cross-file=cross/i686-w64-mingw32.txt build
|
meson setup --cross-file=cross/i686-w64-mingw32.txt build
|
||||||
|
|
||||||
# x86_64/64bit
|
# x86_64/64bit
|
||||||
meson setup --cross-file=cross/x86_64-w64-mingw32.txt build
|
meson setup --cross-file=cross/x86_64-w64-mingw32.txt build
|
||||||
```
|
|
||||||
|
|
||||||
## Mock Application
|
## Mock Application
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue