From cd93853df1497ecba6e560336a8f4a66d8504f5b Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Sun, 16 Nov 2025 21:01:08 +0100 Subject: [PATCH] Init branch Signed-off-by: Nikolai Rodionov --- .gitignore | 1 + .pre-commit-config.yaml | 8 ++++++++ README.md | 7 ++++++- src/main.cpp | 2 +- 4 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 .pre-commit-config.yaml diff --git a/.gitignore b/.gitignore index a390d19..277fc18 100644 --- a/.gitignore +++ b/.gitignore @@ -90,3 +90,4 @@ compile_commands.json # Conan build dir build/ +.cache/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..0fa1b83 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,8 @@ +--- +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v2.3.0 + hooks: + - id: check-yaml + - id: end-of-file-fixer + - id: trailing-whitespace diff --git a/README.md b/README.md index e224d41..8ff5255 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # daw-project - ## Build +### Requirenments + +#### Linux + +- qt6 +- jack diff --git a/src/main.cpp b/src/main.cpp index 05a834e..84ed2d6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3,7 +3,7 @@ #include #include #include - +#include "QApplication" static std::atomic g_client{nullptr}; static float g_phase = 0.0f; static const float kFreq = 440.0f;