diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-08-25 12:57:29 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-08-25 12:57:29 -0400 |
commit | 02ef389567d5b79a055194d78418dba74119c01b (patch) | |
tree | f86ebfed984f8526b38d526b4c0b19a112bd6997 /gui/Makefile | |
parent | 32fc992f6a41a9a139aaaa6569f549b54c8a912f (diff) |
add text editor to gui
Diffstat (limited to 'gui/Makefile')
-rw-r--r-- | gui/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/Makefile b/gui/Makefile index 99a0243..679e1e4 100644 --- a/gui/Makefile +++ b/gui/Makefile @@ -8,7 +8,7 @@ CXXFLAGS = --std=c++20 -ggdb -Og \ CXXFILES = $(shell find serial/src -name "*.cc") $(wildcard *.cpp) OFILES = $(patsubst %.cc, %.o, $(patsubst %.cpp, %.o, $(CXXFILES))) -LIBS = $(shell wx-config --libs) +LIBS = $(shell wx-config --libs) -lwx_gtk3u_stc-3.1 OUTELF = stmdspgui all: $(OUTELF) |