mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0029643: Samples: create .bat files for building AndroidQt sample on Windows platform
Create environment (genproj.bat, msvc.bat, etc) for building AndroidQt sample on Windows platform (as well as it's done in other OCCT Qt samples)
This commit is contained in:
parent
6664a9c233
commit
41bf7e0b3c
5
samples/qt/AndroidQt/AndroidQt0.pro
Normal file
5
samples/qt/AndroidQt/AndroidQt0.pro
Normal file
@ -0,0 +1,5 @@
|
||||
TEMPLATE=subdirs
|
||||
|
||||
SUBDIRS=AndroidQt0
|
||||
|
||||
AndroidQt0.file=AndroidQt.pro
|
@ -4,9 +4,6 @@ DEPENDPATH += $$_PRO_FILE_PWD_/occt/inc $$_PRO_FILE_PWD_/3rdparty/include
|
||||
|
||||
DEFINES += OCC_CONVERT_SIGNALS
|
||||
|
||||
QMAKE_CFLAGS += -fexceptions -Wno-ignored-qualifiers
|
||||
QMAKE_CXXFLAGS += -fexceptions -Wno-ignored-qualifiers
|
||||
|
||||
CONFIG(debug,debug|release) {
|
||||
DEFINES += DEB
|
||||
}
|
||||
@ -16,9 +13,19 @@ occt_lib_subpath = libs/armeabi-v7a
|
||||
occt_lib_path = $$_PRO_FILE_PWD_/occt/$$occt_lib_subpath
|
||||
3rdparty_lib_path = $$_PRO_FILE_PWD_/3rdparty/$$occt_lib_subpath
|
||||
|
||||
android {
|
||||
QMAKE_CFLAGS += -fexceptions -Wno-ignored-qualifiers
|
||||
QMAKE_CXXFLAGS += -fexceptions -Wno-ignored-qualifiers
|
||||
LIBS += -L$$occt_lib_path -lEGL
|
||||
}
|
||||
win32 {
|
||||
QMAKE_CXXFLAGS_WARN_ON += -W4
|
||||
INCLUDEPATH += $$(CSF_OCCTIncludePath)
|
||||
LIBS += -L$(CSF_OCCTLibPath);$(CSF_PRODLibPath)
|
||||
LIBS += -lopengl32
|
||||
}
|
||||
|
||||
LIBS += -L$$occt_lib_path \
|
||||
-lTKernel \
|
||||
LIBS += -lTKernel \
|
||||
-lTKMath \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
@ -31,8 +38,7 @@ LIBS += -L$$occt_lib_path \
|
||||
-lTKMesh \
|
||||
-lTKHLR \
|
||||
-lTKV3d \
|
||||
-lTKOpenGl \
|
||||
-lEGL
|
||||
-lTKOpenGl
|
||||
|
||||
# IMPORTANT. load libraries in a proper order
|
||||
ANDROID_EXTRA_LIBS = $$3rdparty_lib_path/libfreeimage.so \
|
||||
|
4
samples/qt/AndroidQt/custom.bat
Normal file
4
samples/qt/AndroidQt/custom.bat
Normal file
@ -0,0 +1,4 @@
|
||||
@echo off
|
||||
rem Define QTDIR variable
|
||||
|
||||
set "QTDIR="
|
10
samples/qt/AndroidQt/env.bat
Normal file
10
samples/qt/AndroidQt/env.bat
Normal file
@ -0,0 +1,10 @@
|
||||
@echo off
|
||||
|
||||
call "%~dp0..\..\..\env.bat" %1 %2 %3
|
||||
|
||||
call "custom.bat" %1 %2 %3
|
||||
|
||||
set "RES_DIR=%~dp0win%ARCH%\%VCVER%\res"
|
||||
set "CSF_ResourcesDefaults=%RES_DIR%"
|
||||
|
||||
set "PATH=%QTDIR%/bin;%PATH%"
|
11
samples/qt/AndroidQt/genproj.bat
Normal file
11
samples/qt/AndroidQt/genproj.bat
Normal file
@ -0,0 +1,11 @@
|
||||
@echo off
|
||||
REM Generation of vcproj files with qmake utilite
|
||||
REM Variable QTDIR and PATH to qmake executable must be defined without fail
|
||||
|
||||
REM Use first argument to specify version of Visual Studio (vc10, vc11, vc12 or vc14),
|
||||
REM second argument specifies architecture) (win32 or win64)
|
||||
REM third argument specifies Debug or Release mode
|
||||
|
||||
call "%~dp0env.bat" %1 %2 %3
|
||||
call "%VCVARS%" %VCARCH%
|
||||
qmake -tp vc -r -o AndroidQt.sln AndroidQt0.pro
|
19
samples/qt/AndroidQt/msvc.bat
Normal file
19
samples/qt/AndroidQt/msvc.bat
Normal file
@ -0,0 +1,19 @@
|
||||
@echo off
|
||||
|
||||
Setlocal EnableDelayedExpansion
|
||||
|
||||
rem Setup environment
|
||||
call "%~dp0env.bat" %1 %2 %3
|
||||
|
||||
rem Define path to project file
|
||||
set "PRJFILE=%~dp0AndroidQt.sln"
|
||||
|
||||
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
||||
if exist "%DevEnvDir%\devenv.exe" (
|
||||
start "" "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
||||
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
||||
start "" "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
||||
) else (
|
||||
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
||||
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user