Skip to content

Commit

Permalink
fix linux backend cmake detection
Browse files Browse the repository at this point in the history
  • Loading branch information
mikex86 committed Mar 6, 2025
1 parent c5f1b61 commit cc9187a
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 @@ -11,7 +11,7 @@ if (WIN32)
elseif (APPLE)
message(STATUS "Using Apple threadpark backend")
set(THREADPARK_BACKEND apple)
elseif (LINUX)
elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux")
message(STATUS "Using Linux threadpark backend")
set(THREADPARK_BACKEND linux)
elseif (UNIX)
Expand Down

0 comments on commit cc9187a

Please sign in to comment.