diff options
author | xengineering <me@xengineering.eu> | 2024-12-26 12:08:24 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-12-26 12:08:24 +0100 |
commit | 63088edf667f49fa3f0eaf2f88074e671c5e0a6b (patch) | |
tree | 2ce51105b63f4fbeb1470131896ea2329499b0a9 | |
parent | 03d41e8069623b5d627dfb298c471a16c380c91d (diff) | |
download | soundbox-63088edf667f49fa3f0eaf2f88074e671c5e0a6b.tar soundbox-63088edf667f49fa3f0eaf2f88074e671c5e0a6b.tar.zst soundbox-63088edf667f49fa3f0eaf2f88074e671c5e0a6b.zip |
Add minimal CMakeLists.txt
This is the first step to switch from GNU Make to CMake.
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..1b266d6 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,3 @@ +cmake_minimum_required(VERSION 3.10) + +project(soundbox LANGUAGES NONE) |