summaryrefslogtreecommitdiffstats
path: root/cmake/getdate.bat
blob: 09956baaa2817654124e87d316e331334b8c3977 (plain)
1
2
3
4
5
6
7
8
9
@echo off

if "%1"=="javadate" date /t & goto end
if "%1"=="javatime" time /t & goto end

for /f "tokens=1-4 eol=/ DELIMS=/ " %%i in ('date /t') do set BUILD=%%l%%j%%k
echo %BUILD%

:end