1 Star 0 Fork 0

无言/VTIL-Core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CMakeLists.txt 971 Bytes
一键复制 编辑 原始数据 按行查看 历史
# 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()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wuyan0/VTIL-Core.git
git@gitee.com:wuyan0/VTIL-Core.git
wuyan0
VTIL-Core
VTIL-Core
master

搜索帮助