Hi Jim! My compiler start script contails this line:
echo -e "const compile_date=$(date +%Y%m%d) \nconst compile_time=$(date +%H%M%S)" | ~/jal/jallib/compiler/jalv2 -include /dev/stdin -s ~/jal/jallib/lib $(find ~/jal/jallib/include -type d \! -path '*.svn*' -printf '-s %p ') $* Might be a bit confusing, but this is what it does: It starts the compiler and includes stdin, to which are fed two lines like const compile_date=20160612 const compile_time=123344 which can be used in the program. Then it passes a "-s" parameter with all directories which can be found under ~/jal/jallib/include and do not end on .svn I have no windows equivalent, though. Greets, Kiste -- You received this message because you are subscribed to the Google Groups "jallib" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/jallib. For more options, visit https://groups.google.com/d/optout.
