1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 14:41:21 +00:00
QB64-PE/source
Matthew Kilgore d36edad30c Fix compilation of files with $ in the name
This is a bit of an odd one, but files with $ in the name don't compile
correctly due to expansion being done on the $.

The culprit here is `make`, as the syntax '$x' is interpreted to mean to
insert the expansion of the variable 'x'. To avoid this behavior we have
to replace every single $ with $$. Make will interpret the $$ to mean it
should insert a single $ and not do any expansion, which is what we
want.

Fixes: #96
2022-06-10 10:42:49 -04:00
..
global Update version to 0.8.0 2022-06-07 16:57:33 -04:00
ide Fixed Typo 2022-06-08 12:25:31 +05:30
subs_functions Implements the _Bin$ function 2021-10-14 00:17:35 +02:00
utilities Add C++ compiler settings dialog 2022-05-30 23:15:04 -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 Fix compilation of files with $ in the name 2022-06-10 10:42:49 -04:00
qb64.ico Proper embedding of qb64.ico into the Windows binary. 2016-09-04 12:12:30 -03:00