CMakeLists.txt 288 B

12345678910111213141516171819
  1. add_library(updatercommon
  2. UI.h
  3. UpdaterCommon.cpp
  4. UpdaterCommon.h
  5. )
  6. target_link_libraries(updatercommon PRIVATE
  7. uicommon
  8. MbedTLS::mbedtls
  9. ZLIB::ZLIB
  10. ed25519
  11. cpp-optparse
  12. )
  13. if(MSVC)
  14. # Add precompiled header
  15. target_link_libraries(updatercommon PRIVATE use_pch)
  16. endif()