jak-project/third-party/zydis/msvc
Tyler Wilding 637b043293
deps: update zydis to latest commit (#3306)
Updates Zydis to it's latest commit, this should fix building the
project on intel macs with a more recent version of macOS. This likely
needs some sanity checks that the debugger stuff still works as
expected.
2024-01-15 16:56:14 -05:00
..
dependencies/zycore deps: update zydis to latest commit (#3306) 2024-01-15 16:56:14 -05:00
examples deps: update zydis to latest commit (#3306) 2024-01-15 16:56:14 -05:00
tools deps: update zydis to latest commit (#3306) 2024-01-15 16:56:14 -05:00
zydis deps: update zydis to latest commit (#3306) 2024-01-15 16:56:14 -05:00
README.md random fixes + support clang-cl on visual studio (#1129) 2022-02-07 19:15:37 -05:00
Zydis.sln deps: update zydis to latest commit (#3306) 2024-01-15 16:56:14 -05:00

Readme

This directory contains MSVC project files to build Zydis and the included tools and examples.

There are five build configurations, each with 32/64 bit and debug/release versions:

  • Static with dynamic run-time library (MD)
  • Static with static run-time library (MT)
  • Dynamic (DLL) with dynamic run-time library (MD)
  • Dynamic (DLL) with static run-time library (MT)
  • Kernel mode

In order to build the kernel mode configuration you must have the Microsoft WDK installed, available at https://developer.microsoft.com/en-us/windows/hardware/windows-driver-kit. The kernel mode configuration only builds Zydis and the ZydisWinKernel driver sample. The other configurations build all projects except for ZydisWinKernel.

NOTE: If you already have the WDK installed, make sure it is updated to at least the Windows 10 1709 version (10.0.16299.0) in order to prevent issues opening the solution file. This is due to a bug in older WDK toolsets.

All Zydis features are enabled by default. In order to disable specific features you can define preprocessor directives such as ZYDIS_DISABLE_FORMATTER. Refer to CMakeLists.txt for the full list of feature switches.