Hi,
I'm REALLY new to cmake. I see this:
# look for wxWidgets
FIND_PACKAGE(wxWidgets REQUIRED html adv core base net aui xrc qa richtext )
INCLUDE(${wxWidgets_USE_FILE})
But I don't see where I specify my specific directories.
In my VS2013 projects (and XCode, and CodeBlocks), I was several
builds, each with their own wxWidgets directory
Release : /home/gbr/wxwidgets/build-release
Debug: /home/gbr/wxWidgets/build-debug
Release GTK3: /home/gbr/wxWidgets/build-release-gtk3
Debug GTK3: /home/gbr/wxWidgets/build-debufg-gtk3
Release OSX
Debug OSX
Release MSW
Debug MSW
I also want builds for profiling, but those would use existing
wxWidgets directories. Does that make sense?
Gerald