From e6be0e9aaa01a3ddc2e0d7e2122474ae8874bfd1 Mon Sep 17 00:00:00 2001 From: Max de Vos <97400699+Henkdetenk12345@users.noreply.github.com> Date: Wed, 24 Jun 2026 20:15:40 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cdf6cee..9e4928f 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ fc-cache fv 3. Compile the project: ```bash -g++ -o wxTED \ +g++ -std=c++17 -o wxTED \ -I./include \ charchange.cpp \ hamm.c \ @@ -70,9 +70,8 @@ g++ -o wxTED \ wxTEDMain.cpp \ src/T42.cpp \ src/HeaderPacket.cpp \ - ttxpageset.cpp \ - `wx-config --cxxflags --libs core,base,adv,html` \ - -std=c++17 + ttxpageset.cpp \ + $(wx-config --cxxflags --libs core,base,adv,html) ``` 4. Run wxTED: From 76098a4768573b850528485691ae41c58543591f Mon Sep 17 00:00:00 2001 From: Max de Vos <97400699+Henkdetenk12345@users.noreply.github.com> Date: Wed, 24 Jun 2026 20:16:13 +0200 Subject: [PATCH 2/2] Update README.md