You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- @echo off
- setlocal enabledelayedexpansion
- set BIN_DIR=%~dp0
- set VENDOR_DIR=%BIN_DIR%\../
- set DIRS=.
- FOR /D %%V IN (%VENDOR_DIR%\*) DO (
- FOR /D %%P IN (%%V\*) DO (
- set DIRS=!DIRS!;%%~fP
- )
- )
- php.exe -d include_path=!DIRS! %*
|