Add update installer program (Windows only for now)
This commit is contained in:
12
src/updater/CMakeLists.txt
Normal file
12
src/updater/CMakeLists.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
add_executable(updater
|
||||
updater.cpp
|
||||
updater.h
|
||||
)
|
||||
|
||||
target_link_libraries(updater PRIVATE common minizip zlib)
|
||||
|
||||
if(WIN32)
|
||||
target_sources(updater PRIVATE
|
||||
win32_main.cpp
|
||||
)
|
||||
endif()
|
||||
Reference in New Issue
Block a user