mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 20:17:24 +08:00
1dda472562
* fix(NativeHooks): Fix softlock when loading Cayo Perico * fear(netTime): Try to modify time remotely * fix(timeSync): Make it work more consistently * feat(netTime): net time sync for all!
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 5ab30af647d7e64404d76ea6168e7f78f5e365af
|
|
GIT_PROGRESS TRUE
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
)
|
|
message("GTAV-Classes")
|
|
if(NOT gtav_classes_POPULATED)
|
|
FetchContent_Populate(gtav_classes)
|
|
endif()
|