> I'd like to just turn the bundle application off, and make a regular unix > app, even on the mac. Any ideas how to do this? I tried setting -D > MACOSX_BUNDLE=OFF in the cmake configuration script, but it still installed > everything into /Applications. Here's my config script:
That's going to take a bunch of work in the CMake scripts. The problem is that linking is very different on Mac and Linux platforms. So when the plugins are installed in the bundle, they're given path names (through install_name_tool) to various libraries. You'd need to set up a whole set of MAC_NO_BUNDLE conditionals in the CMakeLists to make sure the paths are set correctly. Otherwise they'll all point to your build directory. I can see if I can give some pointers, but this week is going to be really busy. -Geoff ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Avogadro-devel mailing list Avogadro-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/avogadro-devel