mirror of
https://github.com/overte-org/overte.git
synced 2025-04-09 20:04:29 +02:00
18 lines
548 B
CMake
18 lines
548 B
CMake
#
|
|
# Created by Bradley Austin Davis on 2015/10/25
|
|
# Copyright 2015 High Fidelity, Inc.
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http:#www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
|
|
# add the plugin directories
|
|
file(GLOB PLUGIN_SUBDIRS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/*")
|
|
list(REMOVE_ITEM PLUGIN_SUBDIRS "CMakeFiles")
|
|
|
|
foreach(DIR ${PLUGIN_SUBDIRS})
|
|
if(IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${DIR}")
|
|
add_subdirectory(${DIR})
|
|
endif()
|
|
endforeach()
|
|
|