r5sdk/r5dev/inputsystem/CMakeLists.txt
Kawe Mazidjatari bbebbdac13 InputSystem: largely reversed struct and fully reversed iface
Struct has been largely mapped out (still requires a bit of work, mostly the Xbox/Hid data structures). The vftable has been fully mapped out.
2024-04-05 17:09:47 +02:00

19 lines
496 B
CMake

cmake_minimum_required( VERSION 3.16 )
add_module( "lib" "inputsystem" "vpc" ${FOLDER_CONTEXT} TRUE TRUE )
start_sources()
add_sources( SOURCE_GROUP "Private"
"inputsystem.cpp"
"inputsystem.h"
)
add_sources( SOURCE_GROUP "Public"
"${ENGINE_SOURCE_DIR}/public/inputsystem/iinputsystem.h"
"${ENGINE_SOURCE_DIR}/public/inputsystem/AnalogCode.h"
"${ENGINE_SOURCE_DIR}/public/inputsystem/ButtonCode.h"
"${ENGINE_SOURCE_DIR}/public/inputsystem/InputEnums.h"
)
end_sources()