mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 16:49:12 +01:00
57f01776ef
Fixes issue 3464. Also make the check for portaudio really check the version of portaudio. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6359 8ced0084-cf51-0410-be5f-012b33b47a6e
17 lines
337 B
CMake
17 lines
337 B
CMake
set(SRCS Src/ir.c
|
|
Src/wiiuse.c)
|
|
|
|
if(APPLE)
|
|
set(SRCS ${SRCS} Src/io_osx.m)
|
|
elseif(UNIX AND BLUEZ_FOUND)
|
|
set(SRCS ${SRCS} Src/io_nix.c)
|
|
set(LIBS ${LIBS} bluetooth)
|
|
elseif(WIN32)
|
|
set(SRCS ${SRCS} Src/io_win.c)
|
|
else()
|
|
set(SRCS ${SRCS} Src/io_dummy.c)
|
|
endif()
|
|
|
|
add_library(wiiuse STATIC ${SRCS})
|
|
target_link_libraries(wiiuse ${LIBS})
|