6899b1f0fa
Added ViewManager. Added dummy Settings class. Added dummy plugin interface (UI plugins only). Added dummy greeting plugin. Added DLLEXPORT macros for UI plugin interface and plugins.
7 lines
313 B
CMake
7 lines
313 B
CMake
file(GLOB SUBDIRECTORIES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*")
|
|
foreach(SUBDIRECTORY ${SUBDIRECTORIES})
|
|
if(IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}" AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/CMakeLists.txt")
|
|
add_subdirectory(${SUBDIRECTORY})
|
|
endif()
|
|
endforeach()
|