pcsx2/updater/CMakeLists.txt

16 lines
232 B
CMake
Raw Normal View History

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