Okay so as the title may suggest, I have two projects in two separate folders. However because they share a lot of the same resources, once exported I want the executable files to reside in the same folder. To provide context, one executable is a game engine, and the other is a level editor. The directory tree would look something like this:
/lib
/lib/args.txt
/lib/core.jar
/lib/game.jar
/lib/editor.jar
/shared_resources
game.exe
editor.exe
Now this does not work. From what I can gather, the args.txt file is an index of files to be loaded when executed and looks something like this:
game
game.jar,core.jar
Semantically, I thought this might work:
game
game.jar,core.jar
editor
editor.jar,core.jar
But this does not work. If I run game.exe, it works as intended, but if I run editor.exe it runs game.exe instead. Can someone please provided some insight? Thanks!