I can compile my wxWidget program from terminal with
g++ myprog.cpp `wx-config --cxxflags --libs std,aui` -o prog
How and where can I edit code::blocks so I can add std,aui to the linker?
Side note: I can compile a wxWidgets project as long as I don't use AUI with code::blocks
You can add this to the linker options:
`wx-config --libs std,aui`
thx!
Add the --cxxflags part also, I missed it.
Quote from: Miguel Gimenez on October 19, 2021, 02:22:53 PM
Add the --cxxflags part also, I missed it.
Remember this part need to be in the compiler section.
I think under other or extra; been to long since I opened CB.
Tim S.