e544e02e55
* Refactored Allow All Vehicles to use the current seat the ped is in to fetch the animation info that the car is currently using. * Update gtav-classes tag hash. * Removed GROUP_SMG from the allow all weapons false scenario.
15 lines
357 B
CMake
15 lines
357 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
gtav_classes
|
|
GIT_REPOSITORY https://github.com/Yimura/GTAV-Classes.git
|
|
GIT_TAG eab95fba6d19ceeee0442158b6f5de6824ff7349
|
|
GIT_PROGRESS TRUE
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
)
|
|
message("GTAV-Classes")
|
|
if(NOT gtav_classes_POPULATED)
|
|
FetchContent_Populate(gtav_classes)
|
|
endif()
|