1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00

Merge branch 'EraseAction' of github.com:Nordsoft91/vcmi into EraseAction

This commit is contained in:
Tomasz Zieliński 2022-09-06 18:48:21 +02:00
commit dc33142139
4 changed files with 4 additions and 4 deletions

View File

@ -5,6 +5,7 @@ on:
branches:
- features/*
- develop
- cpp-map-editor
pull_request:
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
@ -46,7 +47,7 @@ jobs:
pack: 1
cpack_args: -D CPACK_NSIS_EXECUTABLE=`which makensis`
extension: exe
cmake_args: -G Ninja
cmake_args: -G Ninja -DENABLE_EDITOR=0
- platform: msvc
os: windows-latest
test: 0

View File

@ -41,7 +41,7 @@ addons:
notification_email: coverity@arseniyshestakov.com
build_command_prepend: cov-configure --compiler clang-3.6 --comptype clangcc &&
cov-configure --comptype clangcxx --compiler clang++-3.6 && cmake -G Ninja ..
-DCMAKE_BUILD_TYPE=DEBUG -DENABLE_LAUNCHER=0
-DCMAKE_BUILD_TYPE=DEBUG -DENABLE_LAUNCHER=0 -DENABLE_EDITOR=0
build_command: ninja -j 3
branch_pattern: coverity_scan

View File

@ -2,7 +2,6 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QApplication.h>
#include <QFileDialog>
#include <QFile>
#include <QMessageBox>

View File

@ -1,7 +1,7 @@
#include "StdInc.h"
#include <QPropertyAnimation>
#include "Spoiler.h"
#include "spoiler.h"
Spoiler::Spoiler(const QString & title, const int animationDuration, QWidget *parent) : QWidget(parent), animationDuration(animationDuration)
{