mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-18 17:40:48 +02:00
Merge branch 'cpp-map-editor' into EraseAction
This commit is contained in:
commit
684fa5c96c
3
.github/workflows/github.yml
vendored
3
.github/workflows/github.yml
vendored
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -2,7 +2,6 @@
|
||||
#include "mainwindow.h"
|
||||
#include "ui_mainwindow.h"
|
||||
|
||||
#include <QApplication.h>
|
||||
#include <QFileDialog>
|
||||
#include <QFile>
|
||||
#include <QMessageBox>
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user