Skip to content

Commit

Permalink
Don't build crash handler on qt6 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 7, 2021
1 parent 3bc66e4 commit 47d848e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Expand Up @@ -19,7 +19,7 @@ if (NOT IOS)
add_subdirectory(crssync)
endif()

if((WIN32 AND NOT MINGW) OR (UNIX AND NOT APPLE AND NOT ANDROID))
if(not WITH_QT6 and ((WIN32 AND NOT MINGW) OR (UNIX AND NOT APPLE AND NOT ANDROID)))
add_subdirectory(crashhandler)
endif()
add_subdirectory(test)
Expand Down

0 comments on commit 47d848e

Please sign in to comment.