4ab3f51827
Here are the big features in Solarus 1.6: * OpenGL backend and support for GLSL shaders (by Stdgregwar and Vlag) * Support for external script editor of your choice. Zerobrane integration: autocompletion, debug breakpoints, stack inspection (by Stdgregwar) * Multiple improvements in map editor, including the much-requested contour generator, tile replacement and support for multiple tilesets * Multiple improvements in tileset editor, including multiple selection, custom frame count for animated tile patterns * Multiple improvements in sprite editor * Data import from other quests * Beautiful new free tilesets (Zoria by DragonDePlatino, Ocean’s Heart by Max Mraz) * Free pixel fonts (by Wekhter) * Custom hero states in Lua to allow advanced customization of the hero * Tons of new features in the Lua API Last but not least: Solarus 1.6 is fully compatible with Solarus 1.5 quests. You have no work to do to upgrade your project to Solarus 1.6. Starting with version 1.6, the Solarus engine now require OpenGL (GLX) support. The OpenGL ES support doesn't build, this issue has been reported upstream [1]. Update the download url since solarus no longer use github. Rebase patch. See: http://www.solarus-games.org/2018/12/22/solarus-1-6-released [1] https://gitlab.com/solarus-games/solarus/issues/1324 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
From 5f372ba3502369c6501c77650a761300d26f64c0 Mon Sep 17 00:00:00 2001
|
|
From: Romain Naour <romain.naour@gmail.com>
|
|
Date: Thu, 22 Jun 2017 00:19:56 +0200
|
|
Subject: [PATCH] cmake: remove Werror
|
|
|
|
Signed-off-by: Romain Naour <romain.naour@gmail.com>
|
|
---
|
|
cmake/AddCompilationFlags.cmake | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/cmake/AddCompilationFlags.cmake b/cmake/AddCompilationFlags.cmake
|
|
index 2c105db7f..cb5c5719a 100644
|
|
--- a/cmake/AddCompilationFlags.cmake
|
|
+++ b/cmake/AddCompilationFlags.cmake
|
|
@@ -25,7 +25,7 @@ endif()
|
|
set(CMAKE_CXX_FLAGS_RELEASE "-Wno-error -Wall -Wextra -Wno-unknown-pragmas -Wno-fatal-errors ${CMAKE_CXX_FLAGS_RELEASE} -O3")
|
|
|
|
# Be more pedantic in debug mode for developers.
|
|
-set(CMAKE_CXX_FLAGS_DEBUG "-Werror -Wall -Wextra -Wno-error=deprecated-declarations -pedantic ${CMAKE_CXX_FLAGS_DEBUG} -DDEBUG")
|
|
+set(CMAKE_CXX_FLAGS_DEBUG "-Wno-error -Wall -Wextra -Wno-error=deprecated-declarations -pedantic ${CMAKE_CXX_FLAGS_DEBUG} -DDEBUG")
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wsuggest-override")
|
|
endif()
|
|
--
|
|
2.14.5
|
|
|