1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/l0km-jpegwrapper

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
mingw_build.bat 2.3 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
10km Отправлено 28.10.2023 13:16 ed80a56
@rem 根据%%1参数 编译DEBUG|RELEASE版本,默认RELEASE
@echo off
echo build jpegwrapper by MinGW
where gcc
if errorlevel 1 (
echo MinGW/gcc NOT FOUND.
exit /B -1
)
echo MinGW/gcc found.
where cmake
if errorlevel 1 (
echo cmake NOT FOUND.
echo download from http://cmake.org/ ,extract to disk
echo add installation path to environment variable PATH
exit /B -1
)
echo cmake found.
set sh_folder=%~dp0
rem 定义编译的版本类型(DEBUG|RELEASE)
set build_type=Release
rem 如果输入参数1为"DEBUG"(不区分大小写)则编译DEBUG版本
if /I "%1" == "DEBUG" ( set build_type=Debug)
echo build_type=%build_type%
rem 是否编译测试程序
set build_test=True
rem 判断是否能编译64位程序
gcc --version |findstr "sjlj seh"
if errorlevel 1 (
echo unsupported x86_64 build
)else call:gcc_x86_64
rem 判断是否能编译32位程序
gcc --version |findstr "sjlj dwarf"
if errorlevel 1 (
echo unsupported x86 build
)else call:gcc_x86
goto :end
:gcc_x86
echo build x86 use MinGW
if exist build_gcc_x86 rmdir build_gcc_x86 /s/q || exit /B
mkdir build_gcc_x86 || exit /B
pushd build_gcc_x86 || exit /B
conan install .. --build missing -s arch=x86 -of . -o build_test=%build_test% -s build_type=%build_type% || exit /B
cmake .. -G "MinGW Makefiles" ^
-DCMAKE_BUILD_TYPE=%build_type% ^
-DAUTO_BUILD_TEST=%build_test% ^
-DCMAKE_CXX_FLAGS=-m32 ^
-DCMAKE_TOOLCHAIN_FILE=./conan_toolchain.cmake ^
-DCMAKE_INSTALL_PREFIX=../release/jpegwrapper-windows-gcc-x86 || exit /B
cmake --build . --config %build_type% || exit /B
cmake --install . --config %build_type% || exit /B
popd
rmdir build_gcc_x86 /s/q
goto:eof
:gcc_x86_64
echo build x86_64 use MinGW
if exist build_gcc_x86_64 rmdir build_gcc_x86_64 /s/q
mkdir build_gcc_x86_64 || exit /B
pushd build_gcc_x86_64 || exit /B
conan install .. --build missing -s arch=x86_64 -of . -o build_test=%build_test% -s build_type=%build_type% || exit /B
cmake .. -G "MinGW Makefiles" ^
-DCMAKE_BUILD_TYPE=%build_type% ^
-DAUTO_BUILD_TEST=%build_test% ^
-DCMAKE_CXX_FLAGS=-m64 ^
-DCMAKE_TOOLCHAIN_FILE=./conan_toolchain.cmake ^
-DCMAKE_INSTALL_PREFIX=../release/jpegwrapper-windows-gcc-x86_64 || exit /B
cmake --build . --config %build_type% || exit /B
cmake --install . --config %build_type% || exit /B
popd
rmdir build_gcc_x86_64/s/q
goto:eof
:end

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/l0km-jpegwrapper.git
git@api.gitlife.ru:oschina-mirror/l0km-jpegwrapper.git
oschina-mirror
l0km-jpegwrapper
l0km-jpegwrapper
master