mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
[Android] Fix building unit tests.
This commit is contained in:
parent
861d341f4c
commit
0567b28ba1
@ -2,6 +2,9 @@ set(LIBS core gtest)
|
||||
if(APPLE)
|
||||
list(APPEND LIBS ${FOUNDATION_LIBRARY} ${CORESERV_LIBRARY})
|
||||
endif()
|
||||
if(ANDROID)
|
||||
set(LIBS ${LIBS} android log)
|
||||
endif()
|
||||
macro(add_dolphin_test target srcs)
|
||||
# Since this is a Core dependency, it can't be linked as a library and has
|
||||
# to be linked as an object file. Otherwise CMake inserts the library after
|
||||
|
@ -1,4 +1 @@
|
||||
# This test currently doesn't link correctly when EGL is enabled due to issues with the GLInterface design
|
||||
if(NOT USE_EGL)
|
||||
add_dolphin_test(VertexLoaderTest VertexLoaderTest.cpp)
|
||||
endif()
|
||||
add_dolphin_test(VertexLoaderTest VertexLoaderTest.cpp)
|
||||
|
Loading…
Reference in New Issue
Block a user