copying the file is not sufficient in the case, when you want to debug your dll, when the program which uses the dll wants it in a specific directory.
This is my application and i need the dll created in a completely different directory than the projects directory.
so editing the ppj file is obviously the only way for that.
i have only changed the line with the dll to the correct path
from V1
#
# Build userdll.dll.
#
"$(POC_PROJECT_PATH)\userdll.dll": \
"$(POC_PROJECT_PATH)\output\trnspose.obj" \
"$(POC_PROJECT_PATH)\output\userdll.obj" \
"$(POC_PROJECT_PATH)\output\realsum.obj" \
"$(POC_PROJECT_PATH)\output\string.obj"
$(LINK) $(LINKFLAGS) -out:"$@" $**
to V2
#
# Build userdll.dll.
#
"D:\Programme\Mathsoft\Mathcad11\UserEFI\userdll.dll": \
"$(POC_PROJECT_PATH)\output\trnspose.obj" \
"$(POC_PROJECT_PATH)\output\userdll.obj" \
"$(POC_PROJECT_PATH)\output\realsum.obj" \
"$(POC_PROJECT_PATH)\output\string.obj"
$(LINK) $(LINKFLAGS) -out:"$@" $**
but after i changed it back, the project file got corrupt ?
what could i've done wrong, any ideas ?
ad "...rather few occasions ..."
i have relatively often the need to change the name and/or
the path of the project files, when i want to reuse a similar
project for a new one.
-tiwag