aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 04141aa7f6361d3c0b2d3f0ec444f9155cb2472f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
cmake_minimum_required (VERSION 3.4)

set(CMAKE_INSTALL_PREFIX ".")
project(tosa_tools LANGUAGES CXX)

option(TOSA_TOOLS_BUILD_REFERENCE_MODEL "Enable building of Tosa Reference Model" ON)

add_subdirectory(thirdparty)

if(TOSA_TOOLS_BUILD_REFERENCE_MODEL)
    add_subdirectory(reference_model)
endif()