From ef631fbc5eb0b6ab784848edfeb790bb6af4cfa7 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 6 Jan 2024 18:25:03 +0100 Subject: [PATCH] [cmake] add initial CMakeLists.txt --- CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..e97560dd --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required (VERSION 3.13) + +project (aubio LANGUAGES C VERSION 0.5.0) + +enable_testing () + +# enter subdirectories +add_subdirectory (src) +add_subdirectory (examples) +add_subdirectory (tests) -- 2.11.0