mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-01-03 16:13:36 +08:00
24 lines
747 B
CMake
24 lines
747 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
gtav_classes
|
|
GIT_REPOSITORY https://github.com/Yimura/GTAV-Classes.git
|
|
GIT_TAG 16f85bea73691623d1a43c4a912f94f93e509597
|
|
GIT_PROGRESS TRUE
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
)
|
|
message("GTAV-Classes")
|
|
if(NOT gtav_classes_POPULATED)
|
|
FetchContent_Populate(gtav_classes)
|
|
|
|
file(GLOB_RECURSE SRC_GTAV_CLASSES "${gtav_classes_SOURCE_DIR}/*.hpp")
|
|
|
|
# Show GTAV-Classes project
|
|
add_library(gtav_classes "${SRC_GTAV_CLASSES}")
|
|
|
|
source_group(TREE "${gtav_classes_SOURCE_DIR}" PREFIX "GTAV-Classes" FILES "${SRC_GTAV_CLASSES}")
|
|
endif()
|
|
set_property(TARGET gtav_classes PROPERTY CXX_STANDARD 23)
|
|
set_target_properties(gtav_classes PROPERTIES LINKER_LANGUAGE CXX)
|