mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-11 16:46:16 +00:00
21 lines
469 B
CMake
21 lines
469 B
CMake
set(UNICORN_ARCH "x86" CACHE STRING "")
|
|
add_subdirectory(unicorn)
|
|
|
|
##########################################
|
|
|
|
option(FLATBUFFERS_BUILD_TESTS "" OFF)
|
|
option(FLATBUFFERS_INSTALL "" OFF)
|
|
add_subdirectory(flatbuffers)
|
|
|
|
##########################################
|
|
|
|
add_library(reflect INTERFACE)
|
|
target_include_directories(reflect INTERFACE
|
|
"${CMAKE_CURRENT_LIST_DIR}/reflect"
|
|
)
|
|
|
|
##########################################
|
|
|
|
include(googletest.cmake)
|
|
include(zlib.cmake)
|