Textractor extension that sends sentences over the network
Go to file
45Tatami ad5bd38f9d implement (cross-)compilation via meson 2023-05-23 00:12:18 +02:00
TCPSender compile fixes for cross-compilation 2023-05-23 00:09:40 +02:00
cross implement (cross-)compilation via meson 2023-05-23 00:12:18 +02:00
.gitattributes Add .gitignore and .gitattributes. 2022-01-02 16:56:22 +01:00
.gitignore implement (cross-)compilation via meson 2023-05-23 00:12:18 +02:00
LICENSE Create LICENSE 2022-01-06 11:34:40 +00:00
README.md implement (cross-)compilation via meson 2023-05-23 00:12:18 +02:00
TCPSender.sln Add project files. 2022-01-02 16:56:24 +01:00
meson.build implement (cross-)compilation via meson 2023-05-23 00:12:18 +02:00

README.md

Textractor TCP-Sender

Textractor extension that sends sentences over TCP. Useful for setups where the clipboard is not enough. See here for an example of the receiving server side.

Configuration done at runtime via interface.

Purrint_1707

Building

Requires Visual Studio 2019 or meson. Drop into VS, build x86 or x64 depending on which Textractor architecture you use. Drop resulting dll into Textractor extension window.

meson

meson setup build
ninja -Cbuild

Project includes example cross-compilation definition files for a mingw32 toolchain under cross.

# x86/32bit
meson setup --cross-file=cross/i686-w64-mingw32.txt build

# x86_64/64bit
meson setup --cross-file=cross/x86_64-w64-mingw32.txt build