2017-12-10 17:55:03 -06:00
|
|
|
add_library(input_common STATIC
|
|
|
|
analog_from_button.cpp
|
|
|
|
analog_from_button.h
|
2021-03-08 18:03:50 -06:00
|
|
|
gcadapter/gc_adapter.cpp
|
|
|
|
gcadapter/gc_adapter.h
|
|
|
|
gcadapter/gc_poller.cpp
|
|
|
|
gcadapter/gc_poller.h
|
2017-12-10 17:55:03 -06:00
|
|
|
keyboard.cpp
|
|
|
|
keyboard.h
|
|
|
|
main.cpp
|
|
|
|
main.h
|
|
|
|
motion_emu.cpp
|
|
|
|
motion_emu.h
|
2022-12-17 09:06:38 -06:00
|
|
|
precompiled_headers.h
|
2020-04-01 13:07:16 -05:00
|
|
|
touch_from_button.cpp
|
|
|
|
touch_from_button.h
|
2018-09-20 01:28:05 -05:00
|
|
|
sdl/sdl.cpp
|
|
|
|
sdl/sdl.h
|
2018-01-18 09:43:17 -06:00
|
|
|
udp/client.cpp
|
|
|
|
udp/client.h
|
|
|
|
udp/protocol.cpp
|
|
|
|
udp/protocol.h
|
|
|
|
udp/udp.cpp
|
|
|
|
udp/udp.h
|
2017-12-10 17:55:03 -06:00
|
|
|
)
|
2017-01-21 03:53:03 -06:00
|
|
|
|
2022-09-21 11:36:12 -05:00
|
|
|
if(ENABLE_SDL2)
|
2018-09-20 01:28:05 -05:00
|
|
|
target_sources(input_common PRIVATE
|
|
|
|
sdl/sdl_impl.cpp
|
|
|
|
sdl/sdl_impl.h
|
|
|
|
)
|
2022-09-21 11:36:12 -05:00
|
|
|
target_link_libraries(input_common PRIVATE SDL2::SDL2)
|
2017-05-27 20:26:55 -05:00
|
|
|
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
|
2017-01-21 09:33:48 -06:00
|
|
|
endif()
|
2018-09-20 01:28:05 -05:00
|
|
|
|
|
|
|
create_target_directory_groups(input_common)
|
|
|
|
target_link_libraries(input_common PUBLIC core PRIVATE common ${Boost_LIBRARIES})
|
2021-04-24 16:23:45 -05:00
|
|
|
target_include_directories(input_common PRIVATE ${LIBUSB_INCLUDE_DIR})
|
2021-03-08 18:03:50 -06:00
|
|
|
target_link_libraries(input_common PUBLIC ${LIBUSB_LIBRARIES})
|
2022-09-21 11:36:12 -05:00
|
|
|
set_target_properties(input_common PROPERTIES INTERPROCEDURAL_OPTIMIZATION ${ENABLE_LTO})
|
2022-12-17 09:06:38 -06:00
|
|
|
|
|
|
|
if (CITRA_USE_PRECOMPILED_HEADERS)
|
|
|
|
target_precompile_headers(input_common PRIVATE precompiled_headers.h)
|
|
|
|
endif()
|