blob: 9bc1f9ab45b6104c6f37790763224372c3cf9c6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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()
|