Vita3K/vita3k/ctrl/CMakeLists.txt
Zangetsu38 16dbbd9349 modules/(SceCtrl/SceTouch): fix and refactor
- add controllers connected in log when app boot.
- add correct struct of both SceCtrlData(2)
- set touch mode in good place.
- refactor refresh controllers.
- implement sceCtrlGetWirelessControllerInfo.
- using DS4 type when is DS4/Dual Sense.
2021-11-04 19:18:44 +01:00

11 lines
211 B
CMake

add_library(
ctrl
STATIC
include/ctrl/ctrl.h
include/ctrl/functions.h
include/ctrl/state.h
src/ctrl.cpp
)
target_include_directories(ctrl PUBLIC include)
target_link_libraries(ctrl PUBLIC host sdl2 util)