mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 06:47:22 +08:00

* Update for b3504 * fix --------- 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 03bc35cc7e61eb74919ad51c217f6b4bf5502088
|
|
GIT_PROGRESS TRUE
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
)
|
|
message("GTAV-Classes")
|
|
if(NOT gtav_classes_POPULATED)
|
|
FetchContent_Populate(gtav_classes)
|
|
endif()
|