mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 20:17:24 +08:00
ce5c317d87
* feat(Commands): Prototype command system * feat(Commands): Chat commands * refactor(Toxic): convert most options into commands * feat(Protections): block breakup kicks on other players as host * refactor(Kicks): convert most options into commands * refactor(Commands): add labels and descriptions to all commands * feat(Commands): cleanup on unload * refactor(Troll): convert most options into commands * refactor(Misc): convert most options into commands * refactor(Teleport): convert most options into commands * feat(Commands): Variadic commands and toggleable bools * feat(Hotkeys): hotkeys now use commands * fix(Chat): fix the chat window locking up when a message is sent * fix(Commands): properly handle spoofed username * fix(Spam): update filter Co-authored-by: Yimura <24669514+Yimura@users.noreply.github.com>
57 lines
1.4 KiB
CMake
57 lines
1.4 KiB
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
project(YimMenu CXX ASM_MASM)
|
|
|
|
set(SRC_DIR "${PROJECT_SOURCE_DIR}/src")
|
|
|
|
# Git commit embed
|
|
include(scripts/git.cmake)
|
|
|
|
# Fetch modules
|
|
message("\nFetching modules")
|
|
include(scripts/minhook.cmake)
|
|
include(scripts/g3log.cmake)
|
|
include(scripts/pugixml.cmake)
|
|
include(scripts/json.cmake)
|
|
include(scripts/cpr.cmake)
|
|
|
|
message("\nFetching custom modules")
|
|
include(scripts/imgui.cmake)
|
|
include(scripts/gtav-classes.cmake)
|
|
|
|
|
|
# YimMenu
|
|
message(STATUS "YimMenu")
|
|
file(GLOB_RECURSE SRC_MAIN
|
|
"${SRC_DIR}/**.hpp"
|
|
"${SRC_DIR}/**.h"
|
|
"${SRC_DIR}/**.cpp"
|
|
"${SRC_DIR}/**.cc"
|
|
"${SRC_DIR}/**.cxx"
|
|
"${SRC_DIR}/**.asm"
|
|
)
|
|
add_library(YimMenu MODULE "${SRC_MAIN}")
|
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
set_property(TARGET YimMenu PROPERTY CXX_STANDARD 23) # 23 Because std::format is not avalible in std:c++20 for some reason. Maybe it's because i use v142 toolset.
|
|
|
|
source_group(TREE ${SRC_DIR} PREFIX "src" FILES ${SRC_MAIN} )
|
|
|
|
target_include_directories(YimMenu PRIVATE
|
|
"${SRC_DIR}"
|
|
"${json_SOURCE_DIR}/single_include"
|
|
"${gtav_classes_SOURCE_DIR}"
|
|
"${imgui_SOURCE_DIR}"
|
|
)
|
|
|
|
target_precompile_headers(YimMenu PRIVATE "${SRC_DIR}/common.hpp")
|
|
target_link_libraries(YimMenu PRIVATE pugixml minhook g3log imgui cpr)
|
|
|
|
# Warnings as errors
|
|
set_property(TARGET YimMenu PROPERTY COMPILE_WARNING_AS_ERROR ON)
|
|
|
|
add_compile_definitions(YimMenu
|
|
"_CRT_SECURE_NO_WARNINGS"
|
|
"NOMINMAX"
|
|
"WIN32_LEAN_AND_MEAN"
|
|
) |