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
maybegreat48 5db512287c
Some checks failed
Nightly Build / Check Recent Commit (push) Successful in 19s
Nightly Build / Build Nightly (push) Has been cancelled
Nightly Build / Recreate Release (push) Has been cancelled
Add BattlEye server (#3707)
* feat(anticheat): add BE server and a kick
* fix(clang-format): enforce braces
2024-09-24 08:12:15 +02:00

15 lines
371 B
CMake

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