dolphin/Source/Core/UpdaterCommon/CMakeLists.txt
2022-05-22 01:19:44 +02:00

18 lines
279 B
CMake

add_library(updatercommon
UI.h
UpdaterCommon.cpp
UpdaterCommon.h
)
target_link_libraries(updatercommon PRIVATE
uicommon
mbedtls
ZLIB::ZLIB
ed25519
cpp-optparse
)
if(MSVC)
# Add precompiled header
target_link_libraries(updatercommon PRIVATE use_pch)
endif()