From 49b198e7e54730a9281be14daa7a7bf6a7ea09d0 Mon Sep 17 00:00:00 2001 From: uclaros Date: Mon, 21 Oct 2024 19:56:39 +0300 Subject: [PATCH] try UNIX instead of LINUX --- src/providers/pdal/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/providers/pdal/CMakeLists.txt b/src/providers/pdal/CMakeLists.txt index f5634d0e9a0b..d4082adc29bb 100644 --- a/src/providers/pdal/CMakeLists.txt +++ b/src/providers/pdal/CMakeLists.txt @@ -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")