OGL/CMakeLists: Migrate off add_dolphin_library

Continues the migration work started in 3a4c3bbe01
This commit is contained in:
Lioncash 2018-04-02 08:22:37 -04:00
parent d4f8502ad1
commit a3c53ff754
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7
1 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
set(SRCS
add_library(videoogl
BoundingBox.cpp
FramebufferManager.cpp
main.cpp
@ -18,11 +18,12 @@ set(SRCS
VertexManager.cpp
)
set(LIBS ${LIBS}
videocommon
SOIL
target_link_libraries(videoogl
PUBLIC
common
videocommon
PRIVATE
SOIL
${X11_LIBRARIES}
)
add_dolphin_library(videoogl "${SRCS}" "${LIBS}")