7 lines
180 B
CMake
7 lines
180 B
CMake
|
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
|
||
|
project(Metrics LANGUAGES CXX)
|
||
|
|
||
|
if (METRICS)
|
||
|
add_subdirectory("SampleMetricSink")
|
||
|
add_subdirectory("MetricRecorder")
|
||
|
endif()
|