capstone/msvc
2024-01-07 19:10:59 +08:00
..
capstone_dll fix msvc dll to compile with has_tricore, plus added CRT_SECURE_NO_WARNINGS 2023-06-24 10:00:39 +02:00
capstone_static fix compile errors in capstone_static - unresolved external symbols (#2148) 2023-08-30 11:13:17 +08:00
capstone_static_winkernel merge next to master 2018-07-20 12:36:50 +08:00
cstool fix: compile error missing file cstool msvc/visual studio 2023-04-19 22:27:26 -04:00
test_arm /MT(d) -> /MD(d) 2015-02-01 00:36:53 +08:00
test_basic msvc: Add test projects. (#1444) 2019-03-23 11:43:25 +08:00
test_bpf msvc: Add more test projects. (#1446) 2019-03-24 11:37:09 +08:00
test_customized_mnem tabs & version 4.0 instead of 12 2015-05-01 22:29:58 -07:00
test_detail merge next to master 2018-07-20 12:36:50 +08:00
test_evm msvc: Add test projects. (#1444) 2019-03-23 11:43:25 +08:00
test_iter [M68K] msvc : add CAPSTONE_HAS_M68K define to all msvc projects 2015-10-10 22:49:21 +11:00
test_m68k Added M68K to msvc projects 2015-10-05 16:50:15 +02:00
test_m680x msvc: Add test projects. (#1444) 2019-03-23 11:43:25 +08:00
test_mips /MT(d) -> /MD(d) 2015-02-01 00:36:53 +08:00
test_mos65xx msvc: Add more test projects. (#1446) 2019-03-24 11:37:09 +08:00
test_ppc /MT(d) -> /MD(d) 2015-02-01 00:36:53 +08:00
test_riscv msvc: Add more test projects. (#1446) 2019-03-24 11:37:09 +08:00
test_skipdata merge next to master 2018-07-20 12:36:50 +08:00
test_sparc /MT(d) -> /MD(d) 2015-02-01 00:36:53 +08:00
test_systemz /MT(d) -> /MD(d) 2015-02-01 00:36:53 +08:00
test_tms320c64x msvc: Add more test projects. (#1446) 2019-03-24 11:37:09 +08:00
test_wasm msvc: Add more test projects. (#1446) 2019-03-24 11:37:09 +08:00
test_winkernel merge next to master 2018-07-20 12:36:50 +08:00
test_x86 /MT(d) -> /MD(d) 2015-02-01 00:36:53 +08:00
test_xcore /MT(d) -> /MD(d) 2015-02-01 00:36:53 +08:00
capstone.sln Architecture updater (auto-sync) - Updating AArch64 (#2026) 2023-11-15 12:12:14 +08:00
README Raise minimum requirement to VS2017 (#2228) 2024-01-07 19:10:59 +08:00

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


NOTE:

(1) Visual Studio 2017 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 Windows Driver Kit 8.1 Update 1 or newer versions,
    then check "Build" check boxes for those projects on
    the Configuration Manager through the [Build] menu.