why cannot find dll

This commit is contained in:
Dengke Tang
2023-02-23 15:45:05 -08:00
parent 2aae069734
commit 8455b69763
2 changed files with 13 additions and 4 deletions
+10 -1
View File
@@ -14,10 +14,19 @@ if "%composer_dir%"=="" (
set "work_dir=%script_dir%/.." set "work_dir=%script_dir%/.."
cd %work_dir% cd %work_dir%
echo %work_dir% echo %work_dir%
ls ls x64\Release
php -c php-win.ini %composer_dir% update php -c php-win.ini %composer_dir% update
if %errorlevel% neq 0 (
echo An error occurred while using composer to get dependence
exit /b %errorlevel%
)
php -c php-win.ini vendor/bin/phpunit tests --debug php -c php-win.ini vendor/bin/phpunit tests --debug
if %errorlevel% neq 0 (
echo An error occurred while running unittests
exit /b %errorlevel%
)
) )
endlocal endlocal
+3 -3
View File
@@ -1,5 +1,5 @@
; only works on 64bit build ; only works on 64bit build
extension=x64\Release\php_awscrt.dll extension=.\x64\Release\php_awscrt.dll
extension=php_openssl.dll ; extension=php_openssl.dll
extension=php_mbstring.dll ; extension=php_mbstring.dll