sof/tools/probes/CMakeLists.txt

19 lines
323 B
CMake

# SPDX-License-Identifier: BSD-3-Clause
cmake_minimum_required(VERSION 3.13)
add_executable(sof-probes
probes_main.c
../../src/math/numbers.c
)
target_compile_options(sof-probes PRIVATE
-Wall -Werror
)
target_include_directories(sof-probes PRIVATE
"../../src/include"
)
install(TARGETS sof-probes DESTINATION bin)