mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 22:00:10 -05:00
4e7b37cad3
Fixes: #26702
8 lines
197 B
CMake
8 lines
197 B
CMake
file(TO_CMAKE_PATH "${CMAKE_SOURCE_DIR}/../hook.cmake" hook_path)
|
|
cmake_instrumentation(
|
|
API_VERSION 1
|
|
DATA_VERSION 1
|
|
HOOKS preBuild postBuild
|
|
CALLBACK ${CMAKE_COMMAND} -P ${hook_path} 0
|
|
)
|