summaryrefslogtreecommitdiffstats
path: root/plugins/CMakeLists.txt
blob: 9fb5cb9557bce2dc43a4eca7a7cd34abf107be0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
set(UCA_CONFIGDIR "${CMAKE_CURRENT_BINARY_DIR}/../src")

add_subdirectory(mock)
add_subdirectory(pf)
add_subdirectory(pco)
add_subdirectory(pylon)
add_subdirectory(ufo)
add_subdirectory(dexela)

if (CMAKE_CXX_COMPILER)
    add_subdirectory(xkit)
endif()

message("-- Building the following plugins:")
set(_plugins "mock;pf;pco;pylon;ufo;dexela;xkit")

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