Add reflect submodule

This commit is contained in:
momo5502
2024-08-20 12:45:40 +02:00
parent a0b453deb8
commit 494c562499
4 changed files with 11 additions and 2 deletions

3
.gitmodules vendored
View File

@@ -6,3 +6,6 @@
[submodule "deps/phnt"]
path = deps/phnt
url = https://github.com/winsiderss/phnt.git
[submodule "deps/reflect"]
path = deps/reflect
url = https://github.com/qlibs/reflect.git

8
deps/CMakeLists.txt vendored
View File

@@ -1,7 +1,11 @@
set(UNICORN_ARCH "x86" CACHE STRING "")
##########################################
add_subdirectory(unicorn)
add_subdirectory(phnt)
##########################################
add_library(reflect INTERFACE)
target_include_directories(reflect INTERFACE
"${CMAKE_CURRENT_LIST_DIR}/reflect"
)

1
deps/reflect vendored Submodule

Submodule deps/reflect added at 2129a1a551

View File

@@ -16,6 +16,7 @@ target_link_libraries(emulator PRIVATE
common
unicorn
phnt::phnt
reflect
)
set_property(GLOBAL PROPERTY VS_STARTUP_PROJECT emulator)