11 lines
309 B
CMake
11 lines
309 B
CMake
|
|
||
|
# The following lines of boilerplate have to be in your project's CMakeLists
|
||
|
# in this exact order for cmake to work correctly
|
||
|
cmake_minimum_required(VERSION 3.5)
|
||
|
|
||
|
set(COMPONENT_SRCS "simple_sniffer_example_main.c"
|
||
|
"cmd_sniffer.c")
|
||
|
set(COMPONENT_ADD_INCLUDEDIRS ".")
|
||
|
|
||
|
register_component()
|