Some little fixes (#411)

This commit is contained in:
Paul I 2018-03-20 23:44:00 +03:00 committed by xarkes
parent 2c726205c4
commit b14be4acb2
3 changed files with 5 additions and 3 deletions

View File

@ -51,7 +51,7 @@ before_build:
# Build config
build_script:
- cmd: if defined QMAKE ( call prepare_r2.bat && call build.bat CUTTER_ENABLE_JUPYTER CUTTER_ENABLE_QTWEBENGINE )
- cmd: if defined QMAKE ( call prepare_r2.bat && call build.bat )
- cmd: if defined MESON ( python meson.py --dist=%ARTIFACT_PATH% --backend=%BACKEND% --jupyter --webengine )
after_build:

View File

@ -16,7 +16,7 @@ MKDIR build%BITS%
CD build%BITS%
ECHO Building cutter
qmake "CONFIG+=%*" ..\src\cutter.pro -config release -tp vc
qmake %* ..\src\cutter.pro -config release -tp vc
IF !ERRORLEVEL! NEQ 0 EXIT /B 1
msbuild /m cutter.vcxproj /p:Configuration=Release;Platform=%MSBUILDPLATFORM%
IF !ERRORLEVEL! NEQ 0 EXIT /B 1

View File

@ -15,7 +15,9 @@ CONFIG += c++11
equals(CUTTER_ENABLE_JUPYTER, true) CONFIG += CUTTER_ENABLE_JUPYTER
!defined(CUTTER_ENABLE_QTWEBENGINE, var) CUTTER_ENABLE_QTWEBENGINE=true
equals(CUTTER_ENABLE_QTWEBENGINE, true) CONFIG += CUTTER_ENABLE_QTWEBENGINE
equals(CUTTER_ENABLE_JUPYTER, true) {
equals(CUTTER_ENABLE_QTWEBENGINE, true) CONFIG += CUTTER_ENABLE_QTWEBENGINE
}
# Define the preprocessor macro to get the application version in our application.
DEFINES += APP_VERSION=\\\"$$VERSION\\\"