dolphin/Source/Core/UpdaterCommon/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
288 B
CMake
Raw Normal View History

add_library(updatercommon
UI.h
UpdaterCommon.cpp
UpdaterCommon.h
)
target_link_libraries(updatercommon PRIVATE
uicommon
MbedTLS::mbedtls
ZLIB::ZLIB
ed25519
cpp-optparse
2022-05-21 23:19:44 +00:00
)
if(MSVC)
# Add precompiled header
target_link_libraries(updatercommon PRIVATE use_pch)
endif()