We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 413f52a commit 4c61555Copy full SHA for 4c61555
tools/linuxdeployqt/CMakeLists.txt
@@ -13,7 +13,12 @@ execute_process(
13
COMMAND bash ${CMAKE_CURRENT_SOURCE_DIR}/../excludelist.sh
14
OUTPUT_VARIABLE EXCLUDELIST
15
TIMEOUT 10
16
+ RESULT_VARIABLE EXCLUDELIST_RESULT
17
)
18
+if(NOT EXCLUDELIST_RESULT EQUAL 0)
19
+ message(FATAL_ERROR "Failed to fetch and generate excludelist")
20
+endif()
21
+mark_as_advanced(EXCLUDELIST EXCLUDELIST_RESULT)
22
23
add_executable(linuxdeployqt main.cpp shared.cpp)
24
target_include_directories(linuxdeployqt PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
0 commit comments