mirror of
https://github.com/Fishwaldo/SBCBMC.git
synced 2025-03-15 11:31:26 +00:00
17 lines
286 B
CMake
17 lines
286 B
CMake
cmake_minimum_required(VERSION 3.1.0)
|
|
|
|
project(sbcbmc)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
if(CMAKE_VERSION VERSION_LESS "3.7.0")
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
endif()
|
|
|
|
|
|
|
|
add_subdirectory(plugins)
|
|
add_subdirectory(agent)
|
|
add_subdirectory(client)
|