The reason why you're getting the missing library error is because it's not in path. Solutions-
1) Add /usr/local/lib to LD_LIBRARY_PATH before launching C::B from shell.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
Or
2) Create a file named wx.conf and just add one line, /usr/local/lib , to it. Now save it to /etc/ld.so.conf.d dir and run ldconfig immediately.
If this dir doesn't exist, then add the dir to /etc/ld.so.conf file and run ldconfig.
Edit1: Oh I just noted (just got up) that you compiled wx in Unicode mode. Configure wx with the following command line (sample, but this is the one I use). :)
./configure --disable-debug --enable-shared --enable-unicode --enable-monolithic --with-gtk=2 --with-regex=builtin