mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
19 lines
288 B
CMake
19 lines
288 B
CMake
add_library(updatercommon
|
|
UI.h
|
|
UpdaterCommon.cpp
|
|
UpdaterCommon.h
|
|
)
|
|
|
|
target_link_libraries(updatercommon PRIVATE
|
|
uicommon
|
|
MbedTLS::mbedtls
|
|
ZLIB::ZLIB
|
|
ed25519
|
|
cpp-optparse
|
|
)
|
|
|
|
if(MSVC)
|
|
# Add precompiled header
|
|
target_link_libraries(updatercommon PRIVATE use_pch)
|
|
endif()
|