From e5e2676409a936431f87d31fb74d825257b20804 Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Tue, 13 Oct 2020 16:11:07 -0700 Subject: Initial checkin of TOSA reference_model and tests Change-Id: I2f8e7fa63e2ae40203e57d2cc8814bde3b312cb6 Signed-off-by: Eric Kunze --- CMakeLists.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..19c5824 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required (VERSION 3.4) + +set(CMAKE_INSTALL_PREFIX ".") +project(tosa_tools LANGUAGES CXX) + +option(TOSA_TOOLS_BUILD_SERIALIZATION "Enable building of Tosa Serialization Library" ON) +option(TOSA_TOOLS_BUILD_REFERENCE_MODEL "Enable building of Tosa Reference Model" ON) + +add_subdirectory(thirdparty) + +if(TOSA_TOOLS_BUILD_SERIALIZATION) + add_subdirectory(serialization) +endif() + +if(TOSA_TOOLS_BUILD_REFERENCE_MODEL) + add_subdirectory(reference_model) +endif() -- cgit v1.2.1