2018-01-18 00:37:34 +00:00
|
|
|
add_library(input_common STATIC
|
|
|
|
analog_from_button.cpp
|
|
|
|
analog_from_button.h
|
|
|
|
keyboard.cpp
|
|
|
|
keyboard.h
|
|
|
|
main.cpp
|
|
|
|
main.h
|
|
|
|
motion_emu.cpp
|
|
|
|
motion_emu.h
|
2020-09-25 22:58:27 +00:00
|
|
|
motion_from_button.cpp
|
|
|
|
motion_from_button.h
|
2020-08-24 00:26:47 +00:00
|
|
|
motion_input.cpp
|
|
|
|
motion_input.h
|
2020-07-22 14:39:53 +00:00
|
|
|
settings.cpp
|
|
|
|
settings.h
|
2020-07-14 17:01:36 +00:00
|
|
|
touch_from_button.cpp
|
|
|
|
touch_from_button.h
|
2020-06-21 16:36:28 +00:00
|
|
|
gcadapter/gc_adapter.cpp
|
|
|
|
gcadapter/gc_adapter.h
|
|
|
|
gcadapter/gc_poller.cpp
|
|
|
|
gcadapter/gc_poller.h
|
2018-09-20 06:28:05 +00:00
|
|
|
sdl/sdl.cpp
|
|
|
|
sdl/sdl.h
|
2019-08-24 13:57:49 +00:00
|
|
|
udp/client.cpp
|
|
|
|
udp/client.h
|
|
|
|
udp/protocol.cpp
|
|
|
|
udp/protocol.h
|
|
|
|
udp/udp.cpp
|
|
|
|
udp/udp.h
|
2018-01-18 00:37:34 +00:00
|
|
|
)
|
2017-01-21 09:53:03 +00:00
|
|
|
|
2020-10-14 06:51:14 +00:00
|
|
|
if (MSVC)
|
|
|
|
target_compile_options(input_common PRIVATE
|
2020-11-15 11:22:01 +00:00
|
|
|
/W4
|
|
|
|
/WX
|
|
|
|
|
2020-10-14 06:51:14 +00:00
|
|
|
# 'expression' : signed/unsigned mismatch
|
|
|
|
/we4018
|
|
|
|
# 'argument' : conversion from 'type1' to 'type2', possible loss of data (floating-point)
|
|
|
|
/we4244
|
|
|
|
# 'conversion' : conversion from 'type1' to 'type2', signed/unsigned mismatch
|
|
|
|
/we4245
|
|
|
|
# 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data
|
|
|
|
/we4254
|
|
|
|
# 'var' : conversion from 'size_t' to 'type', possible loss of data
|
|
|
|
/we4267
|
|
|
|
# 'context' : truncation from 'type1' to 'type2'
|
|
|
|
/we4305
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(input_common PRIVATE
|
2020-11-15 11:22:01 +00:00
|
|
|
-Werror
|
2020-10-14 06:51:14 +00:00
|
|
|
-Werror=conversion
|
|
|
|
-Werror=ignored-qualifiers
|
|
|
|
-Werror=implicit-fallthrough
|
|
|
|
-Werror=reorder
|
|
|
|
-Werror=shadow
|
|
|
|
-Werror=sign-compare
|
|
|
|
-Werror=unused-but-set-parameter
|
|
|
|
-Werror=unused-but-set-variable
|
|
|
|
-Werror=unused-variable
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2017-01-21 15:33:48 +00:00
|
|
|
if(SDL2_FOUND)
|
2018-09-20 06:28:05 +00:00
|
|
|
target_sources(input_common PRIVATE
|
|
|
|
sdl/sdl_impl.cpp
|
|
|
|
sdl/sdl_impl.h
|
|
|
|
)
|
2017-05-28 04:38:49 +00:00
|
|
|
target_link_libraries(input_common PRIVATE SDL2)
|
2017-05-28 01:26:55 +00:00
|
|
|
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
|
2017-01-21 15:33:48 +00:00
|
|
|
endif()
|
2018-09-20 06:28:05 +00:00
|
|
|
|
2020-07-13 18:48:19 +00:00
|
|
|
target_include_directories(input_common SYSTEM PRIVATE ${LIBUSB_INCLUDE_DIR})
|
|
|
|
target_link_libraries(input_common PRIVATE ${LIBUSB_LIBRARIES})
|
2020-06-21 16:36:28 +00:00
|
|
|
|
2018-09-20 06:28:05 +00:00
|
|
|
create_target_directory_groups(input_common)
|
2020-04-15 23:40:03 +00:00
|
|
|
target_link_libraries(input_common PUBLIC core PRIVATE common Boost::boost)
|