mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
VideoCommon/CMakeLists: Migrate off add_dolphin_library
Continues the migration work started in 3a4c3bbe01e7a44ec997f4fbf0b678fba6f2d46c
This commit is contained in:
parent
c28850045d
commit
fd7ac0d4a3
@ -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…
x
Reference in New Issue
Block a user