Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ index a8618452794..4ab368a4149 100644
defines = []
cflags = []
+ if (!is_win) {
+ cflags += ["-include", "cstdint"]
+ cflags += ["-include", "cstdint", "-Wno-enum-constexpr-conversion"]
+ }
ldflags = []

Expand Down
2 changes: 1 addition & 1 deletion common.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
if(result) # on error
message(STATUS "Python script output: ${output}")
message(STATUS "Python script error: ${error}")
message(FATAL_ERROR "Common/3dParty/build_3rdparty.py failed!")

Check failure on line 117 in common.cmake

View workflow job for this annotation

GitHub Actions / build

Common/3dParty/build_3rdparty.py failed!

Check failure on line 117 in common.cmake

View workflow job for this annotation

GitHub Actions / build

Common/3dParty/build_3rdparty.py failed!

Check failure on line 117 in common.cmake

View workflow job for this annotation

GitHub Actions / build

Common/3dParty/build_3rdparty.py failed!
else()
message(STATUS "Python script output: ${output}")
set(THIRD_PARTY_PREPARED TRUE CACHE INTERNAL "Third party prepared")
Expand Down Expand Up @@ -164,7 +164,7 @@
set(Qt6_DIR "${QT_ROOT}/lib/cmake/Qt6")

find_package(Qt6 REQUIRED COMPONENTS
Core Gui Widgets PrintSupport Svg LinguistTools Multimedia MultimediaWidgets
Core Gui Widgets PrintSupport Svg LinguistTools Multimedia MultimediaWidgets OpenGLWidgets
CorePrivate GuiPrivate PrintSupportPrivate)

# Setup cef
Expand Down
Loading