Hello together,
i set up a new VM with KUbuntu 20.04 LTS.
wxWidgets are kompiled with following Script:
Code: Select all
#!/bin/bash
cd /usr/share/wxWidgets-3.1.5/
mkdir gtk-build
cd gtk-build
../configure --enable-debug --disable-shared --enable-mediactrl --with-opengl
make install
ldconfig
make clean
../configure --disable-debug --disable-shared --enable-mediactrl --with-opengl
make install
ldconfig
make clean
../configure --enable-debug --enable-shared --enable-mediactrl --with-opengl
make install
ldconfig
make clean
../configure --disable-debug --enable-shared --enable-mediactrl --with-opengl
make install
ldconfig
make clean
cd ..
rm -rf gtk-build
cd /home/uwe
Now, when i compile an Application i Points to /usr/lib/x86_64-linux-gnu/wx but it should point to /usr/local/lib/wx !
Is there an Environment-Variable like 'WXCFG' to use?
Thanks very much
Netzschleicher