Skip to content
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

[infra] Build fixes #960

Closed
wants to merge 1 commit into from
Closed
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
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/tkassert/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ ENDIF()
target_include_directories(tkassert PUBLIC
$<INSTALL_INTERFACE:include/tkassert>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include/tkassert>)
target_link_libraries(tkassert PRIVATE tklog::tklog)
target_link_libraries(tkassert PUBLIC tklog::tklog)

target_sources(tkassert
PRIVATE src/AssertMessage.cpp
Expand Down
2 changes: 1 addition & 1 deletion libs/tktokenswap/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ target_include_directories(tktokenswap PUBLIC
$<INSTALL_INTERFACE:include/tktokenswap>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include/tktokenswap>)
target_link_libraries(tktokenswap PRIVATE tklog::tklog)
target_link_libraries(tktokenswap PRIVATE tkassert::tkassert)
target_link_libraries(tktokenswap PUBLIC tkassert::tkassert)
target_link_libraries(tktokenswap PRIVATE tkrng::tkrng)
target_link_libraries(tktokenswap PRIVATE Boost::headers)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

#include <catch2/catch_test_macros.hpp>
#include <vector>
#include <algorithm>

namespace tket {
namespace tsa_internal {
Expand Down
1 change: 1 addition & 0 deletions libs/tktokenswap/test/src/TestUtils/DecodedProblemData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <catch2/catch_test_macros.hpp>
#include <tktokenswap/GeneralFunctions.hpp>
#include <tktokenswap/VertexSwapResult.hpp>
#include <algorithm>

using std::vector;

Expand Down
Loading