capstone/msvc
Satoshi Tanda b08ff801f4 Windows kernel-mode driver support for the v4 branch (#1476)
* ignore VS2017 auto-generated files

* update README files

* update main VS project files to use VS2017

* update test VS project files to use VS2017 and WDK10

* update test files

* update the sample project

* resolve code analysis warning
2019-05-17 12:12:20 +07:00
..
capstone_dll Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
capstone_static Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
capstone_static_winkernel Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
cstool Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_arm Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_arm64 Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_basic Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_customized_mnem Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_detail Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_evm Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_iter Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_m68k Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_m680x Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_mips Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_ppc Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_skipdata Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_sparc Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_systemz Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_tms320c64x Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_winkernel Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_x86 Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
test_xcore Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00
capstone.sln msvc: Bugfix for compile errors, add test projects. (#1449) 2019-03-25 11:19:35 +08:00
README Windows kernel-mode driver support for the v4 branch (#1476) 2019-05-17 12:12:20 +07:00

This directory includes all the necessary files to compile Capstone on Windows
using Microsoft Visual Studio (VS).


NOTE:

(1) Visual Studio 2010 or newer versions is required. Open "capstone.sln" to
    build the libraries & test code with Visual Studio. The resulted binaries
    are put under either msvc/Debug, msvc/Release, msvc/x64/Debug, or
    msvc/x64/Release, depending on how you choose to compile them.

(2) The solution (capstone.sln) & all project files (*.vcxproj) are made in
    Visual Studio 2010, so if you open them using newer version, an extra step
    is needed to convert them to current version. Just accept this when
    asked at the initial dialog, and proceed to build the solution normally
    afterwards.

(3) The capstone_static_winkernel and test_winkernel projects are for Windows
    kernel drivers and excluded from build by default. In order to build them,
    you need to install Visual Studio 2017 or newer versions, and Windows Driver
    Kit 10 or newer versions, then check "Build" check boxes for those
    projects on the Configuration Manager through the [Build] menu.