2019-02-25 22:08:03 +00:00
|
|
|
add_library(updatercommon
|
2019-05-29 09:22:45 +00:00
|
|
|
UI.h
|
|
|
|
UpdaterCommon.cpp
|
|
|
|
UpdaterCommon.h
|
|
|
|
)
|
|
|
|
|
2019-02-25 22:08:03 +00:00
|
|
|
target_link_libraries(updatercommon PRIVATE
|
|
|
|
uicommon
|
2023-04-16 05:57:34 +00:00
|
|
|
MbedTLS::mbedtls
|
2020-06-05 21:01:16 +00:00
|
|
|
ZLIB::ZLIB
|
2019-03-03 12:56:54 +00:00
|
|
|
ed25519
|
2019-05-29 09:22:45 +00:00
|
|
|
cpp-optparse
|
2022-05-21 23:19:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
# Add precompiled header
|
|
|
|
target_link_libraries(updatercommon PRIVATE use_pch)
|
|
|
|
endif()
|