mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
42e3add6a1
* cmake: a couple of msvc compile fixes Throw error when using multi-config generators. Add USE_MSVC_STATIC_CRT option for statically linking with CRT. Set curl's CURL_STATIC_CRT aligned with USE_MSVC_STATIC_CRT. Fix cmake configs of 7z and OpenAL in msvc build. Remove unecessary hard coded compiling and linking flags. Use debug option in windeployqt when configuring for a debug build. Search for windeployqt tool in configure time. Add vcpkg's Qt support. * Fix some typos
54 lines
927 B
CMake
54 lines
927 B
CMake
# 7z sdk
|
|
if(WIN32)
|
|
add_library(3rdparty_7z STATIC EXCLUDE_FROM_ALL
|
|
src/Sha256.c
|
|
src/Ppmd7Dec.c
|
|
src/XzDec.c
|
|
src/XzEnc.c
|
|
src/Lzma2Dec.c
|
|
src/XzCrc64.c
|
|
src/DllSecur.c
|
|
src/Lzma2DecMt.c
|
|
src/BraIA64.c
|
|
src/7zFile.c
|
|
src/7zStream.c
|
|
src/Lzma86Enc.c
|
|
src/Threads.c
|
|
src/7zAlloc.c
|
|
src/LzmaEnc.c
|
|
src/MtCoder.c
|
|
src/Lzma86Dec.c
|
|
src/Sort.c
|
|
src/LzFindMt.c
|
|
src/7zDec.c
|
|
src/Bcj2.c
|
|
src/Ppmd7.c
|
|
src/Bra86.c
|
|
src/Bcj2Enc.c
|
|
src/7zBuf.c
|
|
src/Aes.c
|
|
src/AesOpt.c
|
|
src/XzCrc64Opt.c
|
|
src/7zArcIn.c
|
|
src/Lzma2Enc.c
|
|
src/Bra.c
|
|
src/7zCrcOpt.c
|
|
src/7zBuf2.c
|
|
src/LzFind.c
|
|
src/Ppmd7Enc.c
|
|
src/CpuArch.c
|
|
src/Delta.c
|
|
src/XzIn.c
|
|
src/Alloc.c
|
|
src/Xz.c
|
|
src/LzmaDec.c
|
|
src/LzmaLib.c
|
|
src/7zCrc.c
|
|
src/MtDec.c)
|
|
target_include_directories(3rdparty_7z INTERFACE
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
|
|
$<INSTALL_INTERFACE:/src>)
|
|
else()
|
|
add_library(3rdparty_7z INTERFACE)
|
|
endif()
|