mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-02-02 03:41:07 +00:00
cmake: only build testnative when X11 is available
This commit is contained in:
parent
aa7a6c0ea6
commit
ac9e8691a2
|
@ -116,7 +116,7 @@ if(APPLE)
|
||||||
testutils.c)
|
testutils.c)
|
||||||
elseif(WINDOWS)
|
elseif(WINDOWS)
|
||||||
add_executable(testnative testnative.c testnativew32.c testutils.c)
|
add_executable(testnative testnative.c testnativew32.c testutils.c)
|
||||||
elseif(SDL_X11)
|
elseif(HAVE_X11)
|
||||||
add_executable(testnative testnative.c testnativex11.c testutils.c)
|
add_executable(testnative testnative.c testnativex11.c testutils.c)
|
||||||
target_link_libraries(testnative X11)
|
target_link_libraries(testnative X11)
|
||||||
endif()
|
endif()
|
||||||
|
@ -313,7 +313,7 @@ else()
|
||||||
teststreaming
|
teststreaming
|
||||||
testviewport
|
testviewport
|
||||||
)
|
)
|
||||||
if(WINDOWS OR APPLE OR SDL_X11)
|
if(WINDOWS OR APPLE OR HAVE_X11)
|
||||||
list(APPEND NEEDS_RESOURCES testnative)
|
list(APPEND NEEDS_RESOURCES testnative)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue