On Dec 17, 2014, at 12:35 PM, Obleo Beck <ob...@me.com> wrote:

> I actual see why the copyFile build settings not working. I select the two 
> framework files; DPP.framwork and EDSDK.framework but Xojo sees the 
> .framework as a folder and takes the files inside the frameworks and then 
> adds those and not the actual framework setups like;DPP.framwork and 
> EDSDK.framework. That there looks like a Xojo bug report waiting to happen.

Ah - yes, that would be a feature request for Xojo.  I ran into this and 
created the folder and then added each file to the list heading to that folder.

You can have multiple CopyFilesSteps

> I wondering if there not another way to do this with out using the auto build.

Before I figured that method out, I used a shell in a method I called at the 
start of the App.Open event called DebugSetup

App.Open
        
        …
        #if DebugBuild
                DebugSetup
        #endif

DebugSetup

        Dim theShell As New Shell
        theShell.Execute “cp -r “"/the/folder/path”” 
“”AppPath/Contents/Frameworks/“””

Call that theShell.execute line for each framework.

Or, you could add a Script and then use the IDE Script command “DoCommand” to 
copy them in a similar manner.

Tim

_______________________________________________
Mbsplugins_monkeybreadsoftware.info mailing list
mbsplugins@monkeybreadsoftware.info
https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info

Reply via email to