#
# DO NOT EDIT THIS FILE (unless you REALLY know what you are doing)
#
# To add a component, just add a subdirectory (the component name is the
# directory name). Add all your code there and a text file called
# CMakeLists.txt 
# In your CMakeLists.txt, use the camitk_extension(ACTION_EXTENSION ...) macro apropriately

# find components
get_subdirectories(FRAME_ACTIONS_LIST)

# Add subdirectories in CMake project
foreach(FRAME_NAME ${FRAME_ACTIONS_LIST})
  add_subdirectory(${FRAME_NAME})
endforeach()
