mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-11 01:29:36 -06:00
Add a feature to parse snippets into a trace file compatible with the Google Trace Event Format. Fixes: #26674
8 lines
199 B
CMake
8 lines
199 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 0
|
|
)
|