mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 12:07:46 +08:00
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 9ca0cb74882505d7d2c382e9a588972fd4589775
|
|
GIT_PROGRESS TRUE
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
)
|
|
message("GTAV-Classes")
|
|
if(NOT gtav_classes_POPULATED)
|
|
FetchContent_Populate(gtav_classes)
|
|
endif()
|