Merge pull request #6554 from lioncash/videocommon-cmake
VideoCommon/CMakeLists: Migrate off add_dolphin_library
This commit is contained in:
commit
a81c6b0380
|
@ -1,4 +1,4 @@
|
|||
set(SRCS
|
||||
add_library(videocommon
|
||||
AbstractFramebuffer.cpp
|
||||
AbstractStagingTexture.cpp
|
||||
AbstractTexture.cpp
|
||||
|
@ -59,21 +59,29 @@ set(SRCS
|
|||
XFStructs.cpp
|
||||
)
|
||||
|
||||
set(LIBS
|
||||
target_link_libraries(videocommon
|
||||
PUBLIC
|
||||
core
|
||||
PRIVATE
|
||||
png
|
||||
)
|
||||
|
||||
if(_M_X86)
|
||||
set(SRCS ${SRCS} TextureDecoder_x64.cpp VertexLoaderX64.cpp)
|
||||
target_sources(videocommon PRIVATE
|
||||
TextureDecoder_x64.cpp
|
||||
VertexLoaderX64.cpp
|
||||
)
|
||||
elseif(_M_ARM_64)
|
||||
set(SRCS ${SRCS} VertexLoaderARM64.cpp TextureDecoder_Generic.cpp)
|
||||
target_sources(videocommon PRIVATE
|
||||
VertexLoaderARM64.cpp
|
||||
TextureDecoder_Generic.cpp
|
||||
)
|
||||
else()
|
||||
set(SRCS ${SRCS} TextureDecoder_Generic.cpp)
|
||||
target_sources(videocommon PRIVATE
|
||||
TextureDecoder_Generic.cpp
|
||||
)
|
||||
endif()
|
||||
|
||||
add_dolphin_library(videocommon "${SRCS}" "${LIBS}")
|
||||
|
||||
if(FFmpeg_FOUND)
|
||||
target_sources(videocommon PRIVATE AVIDump.cpp)
|
||||
target_link_libraries(videocommon PRIVATE
|
||||
|
|
Loading…
Reference in New Issue