pcsx2/updater/CMakeLists.txt

13 lines
182 B
CMake
Raw Normal View History

2022-05-12 10:23:01 +00:00
add_executable(updater
Updater.cpp
Updater.h
)
target_link_libraries(updater PRIVATE common fmt::fmt lzma)
if(WIN32)
target_sources(updater PRIVATE
Win32Update.cpp
)
endif()