zyantific / zasm

x86-64 Assembler based on Zydis
MIT License
307 stars 44 forks source link

Compiling question #121

Closed OptionalAssistant closed 6 months ago

OptionalAssistant commented 6 months ago

Hello,I am trying to incorporate zasm into my project and I found that I have to include headers and link libraries not only zasm part but also Zydis.lib and its headers to make it compile?Is that okey or am I doing smth wrong? image image

ZehMatt commented 6 months ago

That's expected, I recommend to use CMake which automates all of this.

OptionalAssistant commented 6 months ago

That's expected, I recommend to use CMake which automates all of this.

Thanks you