Skip to content

Commit 7e0953c

Browse files
committed
case sensitive
1 parent c7490e2 commit 7e0953c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ if (viam_rust_utils_files)
276276
)
277277
elseif(NOT WIN32 OR rust_utils_supported_windows_arch) # TODO(RSDK-10366): Currently, rust_utils is not published for windows aarch, so don't even try downloading
278278
set(lvru_system_name ${CMAKE_SYSTEM_NAME})
279-
if (CMAKE_SYSTEM_NAME STREQUAL "Cygwin")
279+
if (CMAKE_SYSTEM_NAME STREQUAL "Cygwin" OR CMAKE_SYSTEM_NAME STREQUAL "Windows")
280280
set(lvru_system_name "windows")
281281
elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin")
282282
set(lvru_system_name "macosx")
@@ -291,6 +291,7 @@ elseif(NOT WIN32 OR rust_utils_supported_windows_arch) # TODO(RSDK-10366): Curre
291291

292292
set(shared_library_prefix ${CMAKE_SHARED_LIBRARY_PREFIX})
293293
if (WIN32)
294+
message(WARNING "It is win32")
294295
set(shared_library_prefix "lib")
295296
endif()
296297
message(WARNING "shared library prefix is ${CMAKE_SHARED_LIBRARY_PREFIX}")

0 commit comments

Comments
 (0)