1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00
QB64-PE/source
Matthew Kilgore 9e2177deff Allow EXE name to have spaces in it
Makefile's generally hate spaces in filenames, and it's largely
impossible to make them work. Due to that, with the change to use a
`Makefile` the `EXE=` parameter did not work with spaces, and programs
such as "foo bar.bas" would not compile because it produces "foo
bar.exe" which has a space in the name.

There were options here, but in this very specific case it is actually
possible to allow the Makefile to work with spaces. `EXE` is only a
single filename, so as long as we always quote it correctly and the
provided `EXE=` parameter escapes the spaces with `\` then it will work.

Thus, we modified the Makefile to always do the quoting, and modified
QB64 to automatically escape the spaces in the executable name provided
to the Makefile.

I also modified the `compile_tests` to test that spaces in filenames and
paths of the executable correctly compile.

Fixes: #80
2022-05-22 23:59:06 -04:00
..
global Supply a default version label when no version has been calculated 2022-05-20 16:57:45 -04:00
ide Fixes to pending PR issues 2022-05-22 00:40:03 +02:00
subs_functions Implements the _Bin$ function 2021-10-14 00:17:35 +02:00
utilities Add support for mylib$ and mylibopt$ 2022-05-12 00:21:02 -04:00
.gitignore Don't ignore .bas files in source directory 2022-04-28 17:20:45 -04:00
icon.rc Temporarally add build steps back 2022-05-07 19:57:38 -04:00
qb64.bas Allow EXE name to have spaces in it 2022-05-22 23:59:06 -04:00
qb64.ico Proper embedding of qb64.ico into the Windows binary. 2016-09-04 12:12:30 -03:00