blob: 65b0cb0b75714ee9574b4360ec82e44e415ef039 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
set(UCA_CONFIGDIR "${CMAKE_CURRENT_BINARY_DIR}/../src")
add_subdirectory(mock)
add_subdirectory(file)
add_subdirectory(pylon)
add_subdirectory(dexela)
message("-- Building the following plugins:")
set(_plugins "mock;file;;pylon;dexela")
foreach(_target ${_plugins})
if (TARGET "uca${_target}")
message("-- ${_target}")
endif()
endforeach()
|