14 lines
346 B
CMake
14 lines
346 B
CMake
#[[
|
|
Copyright (c) @CompanyNameMagicTag. 2021-2021. All rights reserved.
|
|
Description: CMake entries of sub-directories.
|
|
Author: Media Software Group
|
|
Create: 2021-03-15
|
|
]]
|
|
add_subdirectory(common)
|
|
add_subdirectory(audio)
|
|
if ("${CHIP}" STREQUAL "brandy")
|
|
add_subdirectory(format)
|
|
add_subdirectory(codec)
|
|
add_subdirectory(camera)
|
|
endif()
|