From 9e446f765943e07355d104f5df097f346d8a5176 Mon Sep 17 00:00:00 2001 From: Muthu Annamalai Date: Tue, 11 Feb 2025 18:45:31 -0800 Subject: [PATCH] add simple CMake file to build all the examples post-installation --- examples/CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 examples/CMakeLists.txt diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt new file mode 100644 index 0000000..5a0d6f1 --- /dev/null +++ b/examples/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.5.1) + +project(polycircuit-examples) + +add_subdirectory(MatrixMultiplicationUsage) +add_subdirectory(SignEvaluationUsage) +add_subdirectory(LogisticFunctionUsage)