commit d9b67f3fa68e62460cf65f047263cb21e13a7062 Author: Arseniy Romenskiy Date: Wed Feb 25 04:41:27 2026 +0300 Start project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d8a47e9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +build/ +.kdev4/ + +*.log diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5d5b6d4 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.5) + +project(fft-spark LANGUAGES C) + +target_link_libraries(fft-spark pthread) + +install(TARGETS fft-spark RUNTIME DESTINATION bin) + diff --git a/main.c b/main.c new file mode 100644 index 0000000..e69de29