8000 Declare AnyRPC::anyrpc library link private by mablanchard · Pull Request #58 · faaxm/spix · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Declare AnyRPC::anyrpc library link private #58

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
< 8000 summary role="button" data-target="details-toggle.summaryTarget" data-action="click:details-toggle#toggle" aria-expanded="false" data-view-component="true">
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ target_link_libraries(Spix
Qt${SPIX_QT_MAJOR}::Core
Qt${SPIX_QT_MAJOR}::Gui
Qt${SPIX_QT_MAJOR}::Quick
PRIVATE
AnyRPC::anyrpc
)

Expand Down
3 changes: 2 additions & 1 deletion lib/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
find_package(GTest REQUIRED)
find_package(AnyRPC REQUIRED)

set(TEST_SOURCES
unittests_main.cpp
Expand All @@ -20,5 +21,5 @@ source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} PREFIX source FILES ${TEST_SOURCES

add_executable(Spix_test ${TEST_SOURCES})
target_include_directories(Spix_test PRIVATE ../src)
target_link_libraries(Spix_test Spix GTest::GTest)
target_link_libraries(Spix_test Spix AnyRPC::anyrpc GTest::GTest)
add_test( NAME SpixUnitTests COMMAND Spix_test )
0