-I need to include two folders, a "common" folder, and a folder containing the data for my game.
-There are files named the same in each folder, but they are not the same file! NSIS, however, treats them the same.
-I need a way to automate it or use wildcards. There are many files at different levels of the hierarchy.
Example:
If I have two "main.dso" - one in common and one in Data, it will only use one and not the other 🙁. This is not the behavior I want.
SetOutPath "$INSTDIR\common"
File /r "*.dso"
SetOutPath "$INSTDIR\Data"
File /r "*.dso"