Software/CMakeLists: Migrate off add_dolphin_library

Continues the migration work started in 3a4c3bbe01e7a44ec997f4fbf0b678fba6f2d46c
This commit is contained in:
Lioncash 2018-04-02 08:24:39 -04:00
parent a3c53ff754
commit 8b43a31855
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -1,4 +1,4 @@
set(SRCS
add_library(videosoftware
Clipper.cpp
DebugUtil.cpp
EfbCopy.cpp
@ -16,11 +16,12 @@ set(SRCS
TransformUnit.cpp
)
set(LIBS
videocommon
SOIL
target_link_libraries(videosoftware
PUBLIC
common
videocommon
PRIVATE
SOIL
${X11_LIBRARIES}
)
add_dolphin_library(videosoftware "${SRCS}" "${LIBS}")