mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Software/CMakeLists: Migrate off add_dolphin_library
Continues the migration work started in 3a4c3bbe01
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
set(SRCS
|
add_library(videosoftware
|
||||||
Clipper.cpp
|
Clipper.cpp
|
||||||
DebugUtil.cpp
|
DebugUtil.cpp
|
||||||
EfbCopy.cpp
|
EfbCopy.cpp
|
||||||
@ -16,11 +16,12 @@ set(SRCS
|
|||||||
TransformUnit.cpp
|
TransformUnit.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
set(LIBS
|
target_link_libraries(videosoftware
|
||||||
videocommon
|
PUBLIC
|
||||||
SOIL
|
|
||||||
common
|
common
|
||||||
|
videocommon
|
||||||
|
|
||||||
|
PRIVATE
|
||||||
|
SOIL
|
||||||
${X11_LIBRARIES}
|
${X11_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
|
||||||
add_dolphin_library(videosoftware "${SRCS}" "${LIBS}")
|
|
||||||
|
Reference in New Issue
Block a user