Search found 2 matches

by NavilleZhang
Fri May 27, 2022 10:27 am
Forum: Technical questions
Topic: Why static SDK is only provided for Windows?
Replies: 3
Views: 1336

Re: Why static SDK is only provided for Windows?

Yeah I'm aware, but this adds an extra dependency and makes the binary no longer works when not processed by VMP. To me it seems something like : extern "C" VMProtectBegin(const char* name){ } extern "C" VMProtectEnd(){ } // MY CODE VMProtectBegin("XX") // ..... VMProte...
by NavilleZhang
Fri May 27, 2022 9:38 am
Forum: Technical questions
Topic: Why static SDK is only provided for Windows?
Replies: 3
Views: 1336

Why static SDK is only provided for Windows?

Hi: The program I'm trying to protect with VMProtect uses CMake as its build system. And I must manually copy libVMProtect.dylib for the program to work. What I want is basically we have libVMProtect.a for all platforms, so I could test out the unprotected version in my continuous integration server...