Hi
Thanks for the answer.
Those two commandlines are there and also the files are copied.
On top of that I even have the two lines which shoud exactly copy my desired files:
It is a bit strange because with one of my ported BSPs it is working and with one it's not, even though it looks good to me in
both cases.
Copying files is working:
for /R "%ROOTDIR%\mqx\build\cw10gcc\bsp_RSc_K20\Generated_Code" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Generated_Code\"
for /R "%ROOTDIR%\mqx\build\cw10gcc\bsp_RSc_K20\Sources" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Sources\"
Copying files not working:
for /R "%ROOTDIR%\mqx\build\cw10gcc\MembrasensV1\Generated_Code" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Generated_Code\"
for /R "%ROOTDIR%\mqx\build\cw10gcc\MembrasensV1\Sources" %%f in (*.h) do copy %%f "%OUTPUTDIR%\Sources\"
--------------------- ANSWER ------------------
Ok while writing this i found the mistake. It's a typo.
I forgot to put bsp_ in front of the above mentioned path.
This must have happened while copying the whole .bat file from the previously ported BSP.
The name of the BSP is in the whole .bat file w/o bsp_ and only there with bsp_ .
I just was not careful enough while changing the names.
Anyway. Thanks again.
cheers