Add hive parser

This commit is contained in:
momo5502
2024-11-01 16:40:22 +01:00
parent c02cf778f3
commit e0dc1934eb
5 changed files with 12 additions and 1 deletions

3
.gitmodules vendored
View File

@@ -18,3 +18,6 @@
[submodule "deps/googletest"]
path = deps/googletest
url = https://github.com/google/googletest.git
[submodule "deps/windows-hive-parser"]
path = deps/windows-hive-parser
url = ../windows-hive-parser.git

3
deps/CMakeLists.txt vendored
View File

@@ -13,4 +13,5 @@ target_include_directories(reflect INTERFACE
##########################################
include(mini-gdbstub.cmake)
include(googletest.cmake)
include(googletest.cmake)
include(windows-hive-parser.cmake)

1
deps/windows-hive-parser vendored Submodule

5
deps/windows-hive-parser.cmake vendored Normal file
View File

@@ -0,0 +1,5 @@
add_library(windows-hive-parser INTERFACE)
target_include_directories(windows-hive-parser INTERFACE
"${CMAKE_CURRENT_LIST_DIR}/windows-hive-parser"
)

View File

@@ -16,6 +16,7 @@ target_link_libraries(windows-emulator PRIVATE
common
unicorn-emulator
mini-gdbstub
windows-hive-parser
)
target_link_libraries(windows-emulator PUBLIC