Skip to content

Commit

Permalink
Minor cleanup (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
camio authored Jun 30, 2022
1 parent cd00945 commit 7541839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/StlabUtil.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ function( stlab_detect_main_executor result_var )
find_package(Qt6 QUIET COMPONENTS Core)
stlab_detect_task_system( task_system )

if( ${task_system} STREQUAL "libdispatch" )
if( task_system STREQUAL "libdispatch" )
set( result "libdispatch")
elseif( ${task_system} STREQUAL "emscripten" )
elseif( task_system STREQUAL "emscripten" )
set( result "emscripten")
elseif( Qt6Core_FOUND )
set( result "qt")
Expand Down

0 comments on commit 7541839

Please sign in to comment.