mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-23 09:02:38 +08:00

* Update for b3570 * fix pointers * updated globals * fix(pointers): fix update language * Update gtav-classes.cmake * fix(anticheat): fix anticheat bypass --------- Co-authored-by: Mr-X-GTA <110748953+Mr-X-GTA@users.noreply.github.com>
15 lines
375 B
CMake
15 lines
375 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
gtav_classes
|
|
GIT_REPOSITORY https://github.com/Mr-X-GTA/GTAV-Classes-1.git
|
|
GIT_TAG 921b1a2089777d073d8eb4c92cc8dde76113c0d8
|
|
GIT_PROGRESS TRUE
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
)
|
|
message("GTAV-Classes")
|
|
if(NOT gtav_classes_POPULATED)
|
|
FetchContent_Populate(gtav_classes)
|
|
endif()
|