summaryrefslogtreecommitdiffstats
path: root/plugins/CMakeLists.txt
blob: 7029cf730d9bb209c6ad6154b4a95faf0df74dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
set(UCA_CONFIGDIR "${CMAKE_CURRENT_BINARY_DIR}/../src")

add_subdirectory(mock)
add_subdirectory(file)

message("-- Building the following plugins:")
set(_plugins "mock;file")

foreach(_target ${_plugins})
    if (TARGET "uca${_target}")
        message("--  ${_target}")
    endif()
endforeach()