mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
12 lines
256 B
CMake
12 lines
256 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
PROJECT(bbf C)
|
|
|
|
OPTION(BBFDMD_ENABLED "build bbfdmd daemon with their dependencies" OFF)
|
|
|
|
add_subdirectory(libbbf_api)
|
|
add_subdirectory(libbbf_dm)
|
|
|
|
IF(BBFDMD_ENABLED)
|
|
add_subdirectory(bbfdmd/src)
|
|
ENDIF(BBFDMD_ENABLED)
|