From 9fcd31e193cda667b209821b98e7f0c20e6444bb Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 28 Apr 2021 19:35:04 +0200 Subject: [PATCH] removed cxxparser from cmake --- .gitignore | 1 + CMakeLists.txt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 10e23fa..5361247 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ out bin +build .vs __pycache__ diff --git a/CMakeLists.txt b/CMakeLists.txt index 5dd2786..c4b65d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,8 @@ project(spectralyze) add_executable(spectralyze "src/main.cpp" - "src/FFT.hpp" "lib/cxxopts/cxxopts.hpp") + "src/FFT.hpp" + ) target_include_directories(spectralyze PRIVATE "lib/AudioFile"