mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 23:07:26 +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 09d18c6f6f7f9f8ad67a00f83cdd8379c8a734e3
|
||
|
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)
|