cmake_minimum_required(VERSION 3.5.1)

project(tests)

set(DLDT_BUILDING_TESTS ON)
set(DLDT_DIR ${CMAKE_SOURCE_DIR}/dldt)

if(BUILD_JPEG)
    add_subdirectory(dldt/jpeg)
endif()
if(BUILD_VIDEO)
    add_subdirectory(dldt/video)
endif()
if(BUILD_NETWORK)
    add_subdirectory(dldt/network)
endif()
if(BUILD_CUDA_KERNEL)
    add_subdirectory(dldt/cuda_kernel)
endif()
