Skip to content

Commit

Permalink
chore: mips64 disable compile unit test binaries
Browse files Browse the repository at this point in the history
mips64 disable compile unit test binaries

Log: mips64 disable compile unit test binaries
  • Loading branch information
lichenggang authored and mhduiy committed Jan 6, 2025
1 parent 8857b64 commit ee7a8e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ add_subdirectory(xcb)
if("${PROJECT_VERSION_MAJOR}" STREQUAL "5")
add_subdirectory(wayland)
endif()
if(BUILD_TESTING AND NOT ${CMAKE_SYSTEM_PROCESSOR} MATCHES "loongarch")
if(BUILD_TESTING AND NOT (${CMAKE_SYSTEM_PROCESSOR} MATCHES "loongarch" OR ${CMAKE_SYSTEM_PROCESSOR} MATCHES "mips64"))
enable_testing()
add_subdirectory(tests)
endif()
Expand Down

0 comments on commit ee7a8e3

Please sign in to comment.