1cmake_minimum_required(VERSION 3.0)
2
3option(LOG_PERF "Logging performance data instead of elapsed virtual time" OFF)
4
5if (LOG_PERF)
6	add_compile_definitions(LOG_PERF)
7endif()
8