Skip to content

Commit

Permalink
try UNIX instead of LINUX
Browse files Browse the repository at this point in the history
  • Loading branch information
uclaros committed Oct 21, 2024
1 parent 74a09f8 commit 49b198e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/pdal/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ set(UNTWINE_HDRS
)

# MINGW must come before WIN32 test
# APPLE must come before LINUX test
# APPLE must come before UNIX test
if (MINGW)
set(UNTWINE_OS_DIR ${CMAKE_SOURCE_DIR}/external/untwine/untwine/mingw)
elseif (WIN32)
set(UNTWINE_OS_DIR ${CMAKE_SOURCE_DIR}/external/untwine/untwine/windows)
elseif (APPLE)
set(UNTWINE_OS_DIR ${CMAKE_SOURCE_DIR}/external/untwine/untwine/osx)
elseif (LINUX)
elseif (UNIX)
set(UNTWINE_OS_DIR ${CMAKE_SOURCE_DIR}/external/untwine/untwine/generic)
else()
message(FATAL_ERROR "OS not supported")
Expand Down

0 comments on commit 49b198e

Please sign in to comment.