Re: [Interest] QMAKE_BUNDLE_DATA: $$files does not work for macOS

2023-05-01 Thread Thiago Macieira
On Monday, 1 May 2023 15:44:35 PDT Alexander Dyagilev wrote: > Yes, looks like this. Any way to work around this? :) Do exactly what you did: list the actual names that you expect will get created. This also ensures that the build fails if one of the files is missing, for some reason, instead of

Re: [Interest] QMAKE_BUNDLE_DATA: $$files does not work for macOS

2023-05-01 Thread Alexander Dyagilev
Yes, looks like this. Any way to work around this? :) On 5/1/2023 8:36 PM, Thiago Macieira wrote: On Monday, 1 May 2023 06:39:43 PDT Alexander Dyagilev wrote: Hello, Did anybody encounter this issue and has a nice workaround? I'm trying to use this code (qmake) to copy my shared library to Fr

Re: [Interest] QMAKE_BUNDLE_DATA: $$files does not work for macOS

2023-05-01 Thread Thiago Macieira
On Monday, 1 May 2023 06:39:43 PDT Alexander Dyagilev wrote: > Hello, > > Did anybody encounter this issue and has a nice workaround? > > I'm trying to use this code (qmake) to copy my shared library to > Frameworks folder of my app's bundle. > > mylib.files = $$files($$OUT_PWD/$$DESTDIR/libmyli

[Interest] QMAKE_BUNDLE_DATA: $$files does not work for macOS

2023-05-01 Thread Alexander Dyagilev
Hello, Did anybody encounter this issue and has a nice workaround? I'm trying to use this code (qmake) to copy my shared library to Frameworks folder of my app's bundle. mylib.files = $$files($$OUT_PWD/$$DESTDIR/libmylib*.dylib) mylib.path = Contents/Frameworks QMAKE_BUNDLE_DATA += mylib It