New upstream version 18.0.1+dfsg1
This commit is contained in:
parent
6efda2859e
commit
f2cf6cce50
1337 changed files with 41178 additions and 84670 deletions
51
UI/win-update/updater/CMakeLists.txt
Normal file
51
UI/win-update/updater/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
if(NOT ENABLE_WIN_UPDATER)
|
||||
return()
|
||||
endif()
|
||||
|
||||
if(NOT DEFINED STATIC_ZLIB_PATH OR "${STATIC_ZLIB_PATH}" STREQUAL "")
|
||||
message(STATUS "STATIC_ZLIB_PATH not set, windows updater disabled")
|
||||
return()
|
||||
endif()
|
||||
|
||||
project(updater)
|
||||
|
||||
include_directories(${OBS_JANSSON_INCLUDE_DIRS})
|
||||
include_directories(${LIBLZMA_INCLUDE_DIRS})
|
||||
include_directories(SYSTEM "${CMAKE_SOURCE_DIR}/libobs")
|
||||
include_directories(${BLAKE2_INCLUDE_DIR})
|
||||
|
||||
find_package(ZLIB REQUIRED)
|
||||
|
||||
set(updater_HEADERS
|
||||
../win-update-helpers.hpp
|
||||
resource.h
|
||||
updater.hpp
|
||||
)
|
||||
set(updater_SOURCES
|
||||
../win-update-helpers.cpp
|
||||
updater.cpp
|
||||
patch.cpp
|
||||
http.cpp
|
||||
hash.cpp
|
||||
updater.rc
|
||||
)
|
||||
|
||||
add_definitions(-DNOMINMAX -DUNICODE -D_UNICODE)
|
||||
if(MSVC)
|
||||
add_compile_options("$<$<CONFIG:RelWithDebInfo>:/MT>")
|
||||
endif()
|
||||
|
||||
add_executable(updater WIN32
|
||||
${updater_HEADERS}
|
||||
${updater_SOURCES}
|
||||
)
|
||||
target_link_libraries(updater
|
||||
${OBS_JANSSON_IMPORT}
|
||||
${STATIC_ZLIB_PATH}
|
||||
lzma
|
||||
blake2
|
||||
psapi
|
||||
comctl32
|
||||
shell32
|
||||
winhttp
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue