Duckstation/src/updater/CMakeLists.txt

17 lines
370 B
CMake
Raw Normal View History

add_executable(updater
updater.cpp
updater.h
)
target_link_libraries(updater PRIVATE common minizip zlib)
if(WIN32)
target_sources(updater PRIVATE
win32_main.cpp
2023-09-02 03:41:41 +00:00
win32_progress_callback.cpp
win32_progress_callback.h
)
2023-09-02 03:41:41 +00:00
target_link_libraries(updater PRIVATE "Comctl32.lib")
set_target_properties(updater PROPERTIES WIN32_EXECUTABLE TRUE)
endif()