Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Victor Vazquez <[email protected]>
  • Loading branch information
Jinming-Hu and vhvb1989 committed Nov 18, 2021
1 parent 677edf2 commit 3e19cd0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions sdk/storage/azure-storage-blobs/samples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

cmake_minimum_required (VERSION 3.13)

add_executable(blob_getting_started blob_getting_started.cpp)
target_link_libraries(blob_getting_started PRIVATE azure-storage-blobs)
add_executable(blob-getting-started blob_getting_started.cpp)
target_link_libraries(blob-getting-started PRIVATE azure-storage-blobs)

add_executable(blob_list_operation blob_list_operation.cpp)
target_link_libraries(blob_list_operation PRIVATE azure-storage-blobs)
add_executable(blob-list-operation blob_list_operation.cpp)
target_link_libraries(blob-list-operation PRIVATE azure-storage-blobs)

add_executable(blob_sas blob_sas.cpp)
target_link_libraries(blob_sas PRIVATE azure-storage-blobs)
add_executable(blob-sas blob_sas.cpp)
target_link_libraries(blob-sas PRIVATE azure-storage-blobs)

add_executable(transactional_checksum transactional_checksum.cpp)
target_link_libraries(transactional_checksum PRIVATE azure-storage-blobs)
add_executable(transactional-checksum transactional_checksum.cpp)
target_link_libraries(transactional-checksum PRIVATE azure-storage-blobs)
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

cmake_minimum_required (VERSION 3.13)

add_executable(datalake_getting_started datalake_getting_started.cpp)
target_link_libraries(datalake_getting_started PRIVATE azure-storage-files-datalake)
add_executable(datalake-getting-started datalake_getting_started.cpp)
target_link_libraries(datalake-getting-started PRIVATE azure-storage-files-datalake)
4 changes: 2 additions & 2 deletions sdk/storage/azure-storage-files-shares/samples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

cmake_minimum_required (VERSION 3.13)

add_executable(file_share_getting_started file_share_getting_started.cpp)
target_link_libraries(file_share_getting_started PRIVATE azure-storage-files-shares)
add_executable(file-share-getting-started file_share_getting_started.cpp)
target_link_libraries(file-share-getting-started PRIVATE azure-storage-files-shares)
8 changes: 4 additions & 4 deletions sdk/storage/azure-storage-queues/samples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

cmake_minimum_required (VERSION 3.13)

add_executable(queue_getting_started queue_getting_started.cpp)
target_link_libraries(queue_getting_started PRIVATE azure-storage-queues)
add_executable(queue-getting-started queue_getting_started.cpp)
target_link_libraries(queue-getting-started PRIVATE azure-storage-queues)

add_executable(queue_encode_message queue_encode_message.cpp)
target_link_libraries(queue_encode_message PRIVATE azure-storage-queues)
add_executable(queue-encode-message queue_encode_message.cpp)
target_link_libraries(queue-encode-message PRIVATE azure-storage-queues)

0 comments on commit 3e19cd0

Please sign in to comment.