[Solved] Run an executable after moving it to a different directory in the make file [closed]


You moved the program to ../Data/Derived/Release.

Then you tried to run ./Data/Derived/Release.

These are not the same path. .. means “the parent directory”, but . means “this directory”.

Looks like you missed out a dot.

solved Run an executable after moving it to a different directory in the make file [closed]