1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-07-05 12:29:05 +02:00
Commit Graph

2001 Commits

Author SHA1 Message Date
Mark Tomlin
f10a5a8f7a
Fix Error: assigning to 'AVCodec *' from 'const AVCodec *' discards qualifiers in newer ffmpeg versions (#746)
Co-authored-by: Tomi Lähteenmäki <lihis@lihis.net>
2024-04-20 19:32:37 +02:00
tsjost
0f83c16f65 Merge fix Mac non-xcode and CI building 2021-10-14 22:53:12 +02:00
tsjost
5630af258b Disable Mac CI building viewer/tools as qt5 cmake files are missing
CMake Error at rwviewer/CMakeLists.txt:4 (find_package):
  By not providing "FindQt5OpenGL.cmake" in CMAKE_MODULE_PATH this project
  has asked CMake to find a package configuration file provided by
  "Qt5OpenGL", but CMake did not find one.

CMake Error at rwtools/rwfont/CMakeLists.txt:1 (find_package):
  By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "Qt5", but
  CMake did not find one.
2021-10-14 22:32:32 +02:00
tsjost
ba400a8e42 Speed up Mac CI build 2021-10-14 22:32:32 +02:00
tsjost
b41b4ef4d7 Fix "ar: -no_warning_for_no_symbols: No such file or directory" 2021-10-14 16:13:32 +02:00
tsjost
5f5afac574 Fix off-by-one error putting null char into filepath 2021-10-13 00:13:56 +02:00
tsjost
c5e6709643 Merge removing Boost Filesystem; resolves #682 2021-10-12 21:54:16 +02:00
tsjost
74993e2a94 Re-use the same random engine
as per https://github.com/rwengine/openrw/pull/682#discussion_r249476939
2021-10-12 21:53:56 +02:00
tsjost
da8de34f7d Remove some more boost filesystem references 2021-10-12 21:53:56 +02:00
Florin9doi
fc394a1bde Remove boost::filesystem; Fixes #670 2021-10-12 21:53:56 +02:00
tsjost
115ff7ff74 Merge mostly fixing CI builds 2021-10-12 18:41:52 +02:00
tsjost
02196adfbe Update build badge URLs 2021-10-12 18:38:14 +02:00
tsjost
f8483d1905 Disable Mac builds because it's taking too long
Travis-CI throws a "The job exceeded the maximum time limit for jobs,
and has been terminated." before "brew upgrade python" has even
finished executing.
2021-10-12 18:28:42 +02:00
tsjost
738e3179c4 Disable Conan builds because it's very broken 2021-10-12 18:19:20 +02:00
tsjost
8c87e30b05 Don't do test coverage on Fedora as it's broken for some reason
==> git not installed, testing for mercurial
==> git nor mercurial are installed. Uploader may fail or have unintended consequences
==> curl not installed. Exiting.
ninja: build stopped: subcommand failed.
Command exited with the value: 1
MakeCommand:/usr/bin/cmake --build . --config "Release" --target "coverage_upload" -- -j1
   0 Compiler errors
   8 Compiler warnings
Error(s) when building project
ERROR: Collecting and uploading coverage failed!
2021-10-12 18:19:20 +02:00
tsjost
a5b83e2e09 Remove Boost Filesystem stuff 2021-10-12 18:19:20 +02:00
tsjost
e34884598f std::filesystem uses perms::*_exec not _exe 2021-10-12 18:18:38 +02:00
tsjost
26983ffa3d unique_path doesn't exist in std::filesystem 2021-10-12 18:18:38 +02:00
tsjost
bf345af47a Fix Ubuntu build 2021-10-12 18:18:38 +02:00
tsjost
3487b81f40 Fix "gpgv, gpgv2 or gpgv1 required for verification, but neither seems installed"
This seems to be a problem with 21.04 (rolling) so let's stick with
latest (20.04) for now. Maybe it'll fix itself when they change what
`latest` is pointing to. Maybe it'll stop working again then!
2021-10-12 18:15:37 +02:00
tsjost
a5327eeebb qt5-devel no longer exists in Fedora 2021-10-12 18:15:36 +02:00
tsjost
0806c01fe6 Work around old Docker systems breaking Arch 2021-10-12 18:15:32 +02:00
tsjost
986251155c Arch Linux base image has new path 2021-10-12 00:51:09 +02:00
tsjost
48f34c7ee9 Merge fix #740 compilation errors 2021-10-03 22:53:06 +02:00
Darren Ng
da97cb1822 fix linux build error 2021-10-03 22:46:31 +02:00
tsjost
30856790f1
Change IRC network badge link 2021-06-02 18:57:15 +02:00
Christoph Heiss
ece3d09e29 rwcore/LoaderIMG: Add warning to loadToMemory() that it is thread-unsafe. 2020-05-20 23:51:28 +02:00
Christoph Heiss
77b348f1f4 rwcore/LoaderIMG: Switch to fstream and avoid case-insensitive string comparision. 2020-05-20 23:51:28 +02:00
Christoph Heiss
edaab68525 rwengine,rwgame: Avoid loading models/gta3.img twice. 2020-05-20 23:51:28 +02:00
Christoph Heiss
7d73e199c8 rwgame: Print gamefiles load time on startup. 2020-05-20 23:51:28 +02:00
Paul Cercueil
a43d241fda audio/SoundSource.hpp: Add missing include
Fix build on Debian testing by adding a missing <vector> include.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
2020-03-16 22:37:31 +01:00
Paul Cercueil
528a686f24 cmake: SDL2: Fix SDL2 headers detection
We are looking for the SDL.h file inside a SDL2 folder located in the
standard include paths, so the path suffix should be simply SDL2.

The /usr/local/include/SDL2 and /usr/include/SDL2 are standard paths
with the SDL2 suffix, so they can be dropped.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
2020-03-16 22:36:30 +01:00
Paul Cercueil
6ab92da5b0 cmake: FFmpeg: Fix regex for version detection
Fix regex to detect the "4.2.2-1+b1" version currently available on
Debian testing.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
2020-03-16 22:32:33 +01:00
tsjost
6015cd0cd5
Fix broken IRC shield 2020-02-16 19:29:31 +01:00
Daniel Evans
51b7264744
Merge pull request #722 from danhedron/fix-conan
Fix conan build
2019-09-01 22:23:08 +01:00
Daniel Evans
6be775f3ec Enable ptrace in docker for sanitizers 2019-09-01 21:39:18 +01:00
Daniel Evans
a65b2e030b Override bzip2 version 2019-08-31 21:10:22 +01:00
Oleksii Leleka
be8d07dd74 fix tabs 2019-08-21 17:50:33 +02:00
Oleksii Leleka
ed74f11d39 water render before world render 2019-08-21 17:50:33 +02:00
Daniel Evans
c7d77084c2
Merge pull request #717 from danhedron/imgui
Use ImGui for debugging
2019-05-25 16:37:07 +01:00
Daniel Evans
e759101a47 Provide tests for ViewCamera 2019-05-23 23:38:43 +01:00
Filip Gawin
685b78a6f6 Fix openAL's issue with unqueueing buffers 2019-05-23 15:24:01 +02:00
Filip Gawin
4e068591bd Use enum class to describe actual state 2019-05-23 15:24:01 +02:00
Filip Gawin
03c155d2ba Remove vector's header from SoundBuffer 2019-05-23 15:24:01 +02:00
Filip Gawin
38a77f7477 Remove unused variables from SoundBuffer 2019-05-23 15:24:01 +02:00
Filip Gawin
cc14614e7e Rename thread in SoundBufferStreamed 2019-05-23 15:24:01 +02:00
Filip Gawin
9b07e0492f Restructure sbs and fix hanging of new test 2019-05-23 15:24:01 +02:00
Filip Gawin
88b1c9e509 Replicate extra scenerio in audio loading test
(hazardous for streaming)
2019-05-23 15:24:01 +02:00
Filip Gawin
c234eb00f6 Fixes for thread sanitizer 2019-05-23 15:24:01 +02:00
Filip Gawin
1b588da1d1 Wrap more openAl code with error checking and unqueue buffers before
delete them
2019-05-23 15:24:01 +02:00