is there any way of using the introjucer in command line mode (or similar?) to update and export all my projects? We recently changed the root of our juce folder and now I find myself looking at about 30 jucer projects which need to be opened, “exported” (i.e. creating all files) and resaved…
By the way, unrelated but really annoying: before I managed to register the introjucer as the default for opening .jucer files (on windows!), that no longer seems to be working. Colleague tried it on his computer, no luck either.
Re. the command line: as far as I figured out a few weeks back an app can;t be both command line and window-based in windows…
So I suppose this is OSX only.
I mix CLI and UI in windows often. In fact the app I’m working starting to build out at the moment relies on that ability. I gave a code example in reply to your previous post, but the essence is:
If the application is started form the common line, you can detect that and attach to the command line window, otherwise you spawn a new DOS window. Once you have a handle to a DOS window you can redirect std::cout and friends accordingly.