citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 75ee04fb09184c348256e17f2f556ba1395ab97b
parent 1b84b74bf51780d28b250a66db796774f1d3a839
Author: Kyle Milz <kyle@windows.krwm.net>
Date:   Sun,  8 Jan 2017 15:09:34 -0800

jam: restore windows stringize

Diffstat:
MJamrules.extra | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jamrules.extra b/Jamrules.extra @@ -14,9 +14,9 @@ rule Stringize if $(NT) { actions Stringize { - > $(<) echo "static const char *$(1:B) = R\"(" - >> $(<) cat $(>) - >> $(<) echo ")\";" + > $(<) echo static const char *$(1:B) = R"( + >> $(<) type $(>) + >> $(<) echo )"; } } else { actions Stringize