mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 12:07:46 +08:00
9a1a75b675
- Move cmake files to dedicated cmake folder - Move scattered python files to `scripts/` folder - Update CMakeLists.txt to reflect changes * feat(scripts): add README to folder
12 lines
308 B
CMake
12 lines
308 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
minhook
|
|
GIT_REPOSITORY https://github.com/YimMenu/minhook.git
|
|
GIT_TAG 902ab63e0a771547961e132ccc0700d62e2a1423
|
|
GIT_PROGRESS TRUE
|
|
)
|
|
message("MinHook")
|
|
FetchContent_MakeAvailable(minhook)
|
|
set_property(TARGET minhook PROPERTY CXX_STANDARD 23)
|