Search found 2 matches

by Ciantic
Thu Feb 25, 2021 8:16 pm
Forum: Development, plugins and third party software
Topic: Statically linking the library
Replies: 1
Views: 16564

Re: Statically linking the library

Well, somehow I missed that there is `Everything.c` provided already.

It was easy to statically link using that... I made a simple rust crate that does that: https://crates.io/crates/everything-sys
by Ciantic
Thu Feb 25, 2021 4:13 pm
Forum: Development, plugins and third party software
Topic: Statically linking the library
Replies: 1
Views: 16564

Statically linking the library

Hello, I don't like dragging DLLs with my executables, and I'd like to statically link the Everything64.lib. Currently I'm using MemoryModule to load library the Everything64.dll within my binary, so it appears as statically linked. This is a bit of a hack though. Would you mind giving statically li...