mirror of
https://github.com/overte-org/overte.git
synced 2025-04-13 20:28:20 +02:00
10 lines
299 B
CMake
10 lines
299 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
# add the test directories
|
|
file(GLOB TEST_SUBDIRS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*)
|
|
foreach(DIR ${TEST_SUBDIRS})
|
|
if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${DIR})
|
|
add_subdirectory(${DIR})
|
|
endif()
|
|
endforeach()
|
|
|