Skip to content

Commit

Permalink
Clarify names
Browse files Browse the repository at this point in the history
  • Loading branch information
deniskovalchuk committed Sep 13, 2023
1 parent 6065056 commit 5a93628
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ set(sources
source_group(TREE "${CMAKE_CURRENT_SOURCE_DIR}" FILES ${sources})

add_library(ftp ${sources})
add_library(ftp::client ALIAS ftp)
add_library(ftp::ftp ALIAS ftp)

target_link_libraries(ftp PUBLIC Boost::boost)
target_include_directories(ftp PUBLIC include)
Expand Down
2 changes: 1 addition & 1 deletion apps/cmdline/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ add_executable(cmdline
src/utils.cpp
src/utils.hpp)

target_link_libraries(cmdline PRIVATE ftp::client Boost::boost)
target_link_libraries(cmdline PRIVATE ftp::ftp Boost::boost)
target_compile_features(cmdline PRIVATE cxx_std_17)

add_subdirectory(tests)
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ add_executable(ftp_tests ${sources})

target_link_libraries(ftp_tests
PRIVATE
ftp::client
ftp::ftp
Boost::boost
Boost::filesystem
gtest_main
Expand Down

0 comments on commit 5a93628

Please sign in to comment.