mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-26 19:50:05 +00:00
Fixup: error in CMake from rebase
This commit is contained in:
parent
4c06dd953a
commit
38d79c56b9
@ -386,11 +386,11 @@ set(HEADERS
|
||||
telemetry_session.h
|
||||
)
|
||||
|
||||
set(SYSTEM_ARCHIVES
|
||||
../../dist/shared_font.app.romfs.h
|
||||
)
|
||||
create_directory_groups(${SRCS} ${HEADERS} ${SYSTEM_ARCHIVES})
|
||||
add_library(core STATIC ${SRCS} ${HEADERS} ${SYSTEM_ARCHIVES})
|
||||
create_directory_groups(${SRCS} ${HEADERS})
|
||||
add_library(core STATIC ${SRCS} ${HEADERS})
|
||||
if (ENABLE_CUSTOM_SYSTEM_ARCHIVES)
|
||||
target_include_directories(core INTERFACE "${CUSTOM_ARCHIVES_PREFIX}")
|
||||
endif()
|
||||
target_link_libraries(core PUBLIC common PRIVATE audio_core network video_core)
|
||||
target_link_libraries(core PUBLIC Boost::boost PRIVATE cryptopp dynarmic fmt)
|
||||
if (ENABLE_WEB_SERVICE)
|
||||
|
@ -228,7 +228,6 @@ void System::SystemIntegrityCheck() {
|
||||
if (file->IsOpen()) {
|
||||
file->Close();
|
||||
LOG_INFO(Core, "SystemCheck: Shared Font(legacy) exists.");
|
||||
return true;
|
||||
} else {
|
||||
LOG_ERROR(Core, "SystemCheck: Shared Font missing.");
|
||||
system_integrity = static_cast<Integrity>(system_integrity | Integrity::SharedFont);
|
||||
|
Loading…
Reference in New Issue
Block a user