blob: 04141aa7f6361d3c0b2d3f0ec444f9155cb2472f [file] [log] [blame]
Eric Kunzee5e26762020-10-13 16:11:07 -07001cmake_minimum_required (VERSION 3.4)
2
3set(CMAKE_INSTALL_PREFIX ".")
4project(tosa_tools LANGUAGES CXX)
5
Eric Kunzee5e26762020-10-13 16:11:07 -07006option(TOSA_TOOLS_BUILD_REFERENCE_MODEL "Enable building of Tosa Reference Model" ON)
7
8add_subdirectory(thirdparty)
9
Eric Kunzee5e26762020-10-13 16:11:07 -070010if(TOSA_TOOLS_BUILD_REFERENCE_MODEL)
11 add_subdirectory(reference_model)
12endif()