diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-09-23 11:44:50 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-09-23 11:44:50 -0400 |
commit | f41cfe8196909c6ace58a9dc7e5a7b4cb24c23ba (patch) | |
tree | 959b82ca52c5a9a049681b5c8bd11986b853a9db /gui/Makefile | |
parent | 54e1e399ee8079a8b9d9f9093dd8330e27ccbdc9 (diff) |
add frequency plot
Diffstat (limited to 'gui/Makefile')
-rw-r--r-- | gui/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gui/Makefile b/gui/Makefile index 0ff9c48..0a5494c 100644 --- a/gui/Makefile +++ b/gui/Makefile @@ -1,6 +1,8 @@ CXX = g++ CXXFILES := \ + kissfft/kiss_fft.c \ + kissfft/kiss_fftr.c \ source/serial/src/serial.cc \ source/imgui/backends/imgui_impl_sdl2.cpp \ source/imgui/backends/imgui_impl_opengl2.cpp \ @@ -13,7 +15,8 @@ CXXFILES := \ $(wildcard source/stmdsp/*.cpp) \ $(wildcard source/*.cpp) -CXXFLAGS := -std=c++20 -O2 \ +CXXFLAGS := -std=c++20 -Og -ggdb -g3 \ + -Ikissfft \ -Isource -Isource/imgui -Isource/stmdsp -Isource/serial/include \ -Isource/ImGuiColorTextEdit -Isource/ImGuiFileDialog \ $(shell sdl2-config --cflags) \ @@ -32,7 +35,7 @@ LDFLAGS = $(shell sdl2-config --libs) -lGL -lpthread OUTPUT := stmdspgui endif -OFILES := $(patsubst %.cc, %.o, $(patsubst %.cpp, %.o, $(CXXFILES))) +OFILES := $(patsubst %.c, %.o, $(patsubst %.cc, %.o, $(patsubst %.cpp, %.o, $(CXXFILES)))) all: $(OUTPUT) |