mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 20:17:24 +08:00
12 lines
302 B
CMake
12 lines
302 B
CMake
|
include(FetchContent)
|
||
|
|
||
|
message("asmjit")
|
||
|
FetchContent_Declare(
|
||
|
asmjit
|
||
|
GIT_REPOSITORY https://github.com/asmjit/asmjit.git
|
||
|
GIT_TAG ffac9f36fb045dd2c6a81e1b5b9ccc115e5ef924
|
||
|
GIT_PROGRESS TRUE
|
||
|
)
|
||
|
FetchContent_MakeAvailable(asmjit)
|
||
|
set_property(TARGET asmjit PROPERTY CXX_STANDARD 23)
|