This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/cmake/gtav-classes.cmake
2024-08-14 11:37:16 -04:00

15 lines
378 B
CMake

include(FetchContent)
FetchContent_Declare(
gtav_classes
GIT_REPOSITORY https://github.com/gir489returns/GTAV-Classes.git
GIT_TAG ff32e14276d102db0440546338e1136d37a751ba
GIT_PROGRESS TRUE
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
)
message("GTAV-Classes")
if(NOT gtav_classes_POPULATED)
FetchContent_Populate(gtav_classes)
endif()