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

15 lines
378 B
CMake
Raw Normal View History

2024-07-30 16:11:49 -04:00
include(FetchContent)
FetchContent_Declare(
gtav_classes
2024-08-13 18:34:04 -04:00
GIT_REPOSITORY https://github.com/gir489returns/GTAV-Classes.git
GIT_TAG d700a082cbca28e2ca8a0251e3663c582a24b276
2024-07-30 16:11:49 -04:00
GIT_PROGRESS TRUE
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
)
message("GTAV-Classes")
if(NOT gtav_classes_POPULATED)
FetchContent_Populate(gtav_classes)
endif()