mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Reverse engineered as part of reverse engineering class 'CInput' which is for a future commit. Singleton pointer has been exposed to SDK through the pointer 'g_pInputStackSystem'.
22 lines
614 B
CMake
22 lines
614 B
CMake
cmake_minimum_required( VERSION 3.16 )
|
|
add_module( "lib" "inputsystem" "vpc" ${FOLDER_CONTEXT} TRUE TRUE )
|
|
|
|
start_sources()
|
|
|
|
add_sources( SOURCE_GROUP "Private"
|
|
"inputstacksystem.cpp"
|
|
"inputstacksystem.h"
|
|
"inputsystem.cpp"
|
|
"inputsystem.h"
|
|
)
|
|
|
|
add_sources( SOURCE_GROUP "Public"
|
|
"${ENGINE_SOURCE_DIR}/public/inputsystem/iinputstacksystem.h"
|
|
"${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()
|