Skip to content

Commit

Permalink
[cmake] Apparently cmake_system_processor is not defined on rpi 32 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Jun 7, 2024
1 parent 4c22a4e commit 9a3dc3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/score-plugin-gfx/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if(NOT TARGET avformat AND NOT EMSCRIPTEN)
find_package(FFmpeg COMPONENTS AVCODEC AVFORMAT AVUTIL AVDEVICE)
endif()

if(WIN32 AND ${CMAKE_SYSTEM_PROCESSOR} MATCHES "x86_64")
if(WIN32 AND "${CMAKE_SYSTEM_PROCESSOR}" MATCHES "x86_64")
set(SCORE_HAS_SPOUT 1)
endif()

Expand Down

0 comments on commit 9a3dc3e

Please sign in to comment.