Using Funtions in Compile Time
I got the date functions from the NSIS site (http://nsis.sourceforge.net/Manage_dates_as_numbers) and would like to get the today serial value during compile time.
I envisioned running the script as follows:
!define day
!define !DaySerial `!insertmacro _!DaySerial`
!macro _!DaySerial _SERIAL
Call TodaySerial
Pop ${_SERIAL}
DetailPrint ${_SERIAL}
!macroend
${!DaySerial} day
But I am getting an error on the call:
Error: command Call not valid outside Section or FunctionApparently, the CALL command cannot be executed from a compile time macro.
Error in macro _!DaySerial on macroline 1
My question is: How can I call the function in compile time?
Thanks
David