Skip to content

Commit 6e0e367

Browse files
authored
adjust the case for shell32 inclusion (#1347)
Fixes #1346
1 parent 12ba4ac commit 6e0e367

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if(CMAKE_CXX_STANDARD LESS 14)
5151
endif()
5252

5353
if(WIN32)
54-
target_link_libraries(CLI11 ${PUBLIC_OR_INTERFACE} Shell32)
54+
target_link_libraries(CLI11 ${PUBLIC_OR_INTERFACE} shell32)
5555
endif()
5656

5757
if(CLI11_INSTALL OR CLI11_FULL_INSTALL)

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ function(add_dependent_application_definitions TARGET)
163163
PRIVATE CLI11_${APP_UPPERCASE}_EXE="$<TARGET_FILE:${APP}>")
164164

165165
if(WIN32)
166-
target_link_libraries(${APP} PRIVATE Shell32)
166+
target_link_libraries(${APP} PRIVATE shell32)
167167
endif()
168168
endforeach()
169169
endfunction()

0 commit comments

Comments
 (0)