You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
348 B
15 lines
348 B
2 years ago
|
if(TARGET ipc::toolkit)
|
||
|
return()
|
||
|
endif()
|
||
|
|
||
|
message(STATUS "Third-party: creating target 'ipc::toolkit'")
|
||
|
|
||
|
include(FetchContent)
|
||
|
FetchContent_Declare(
|
||
|
ipc_toolkit
|
||
|
GIT_REPOSITORY https://github.com/ipc-sim/ipc-toolkit.git
|
||
|
GIT_TAG d41d6ca93cf9b9c4c01a3177fbb68b63c6b74df1
|
||
|
GIT_SHALLOW FALSE
|
||
|
)
|
||
|
FetchContent_MakeAvailable(ipc_toolkit)
|