Compare commits

..

2 commits

Author SHA1 Message Date
393324bbe1
nce: fix variable shadowing a member of std::hash
All checks were successful
eden-license / license-header (pull_request) Successful in 24s
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2025-09-26 21:41:29 +02:00
84ea0a0b1a
core: find oaknut when building with NCE
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2025-09-26 21:41:22 +02:00
2 changed files with 1 additions and 1 deletions

View file

@ -310,6 +310,7 @@ endif()
if (ARCHITECTURE_arm64 AND (ANDROID OR PLATFORM_LINUX))
set(HAS_NCE 1)
add_compile_definitions(HAS_NCE=1)
find_package(oaknut 2.0.1 REQUIRED)
endif()
if (YUZU_ROOM)

View file

@ -1224,7 +1224,6 @@ if (HAS_NCE)
arm/nce/patcher.h
arm/nce/visitor_base.h
)
find_package(oaknut 2.0.1 REQUIRED)
target_link_libraries(core PRIVATE merry::oaknut)
endif()