代码拉取完成,页面将自动刷新
# Require at least CMake version 3.15 or later for FetchContent
cmake_minimum_required(VERSION 3.14.5)
# Define the VTIL project
project(VTIL)
option(VTIL_BUILD_TESTS "Build tests" OFF)
# Append the CMake module search path so we can use our own modules
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/cmake)
# Resolve external dependencies
# This should automatically pull in Capstone & Keystone as CMake linkable libraries
include(IncludeDeps)
# Include subprojects
# The dependency chain order is Common > Architecture + SymEx > Optimizer, so include in that order
#
add_subdirectory(VTIL-Common)
add_subdirectory(VTIL-SymEx)
add_subdirectory(VTIL-Architecture)
add_subdirectory(VTIL-Compiler)
# After all other targets are defined, include the VTIL interface target
# Use this target in projects that use VTIL: https://github.com/vtil-project/VTIL-Samples
#
add_subdirectory(VTIL)
# Tests
if(VTIL_BUILD_TESTS)
add_subdirectory(VTIL-Tests)
endif()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。