Skip to content

Commit

Permalink
Fix broken unnecessary linkage
Browse files Browse the repository at this point in the history
  • Loading branch information
jagerman committed Sep 10, 2024
1 parent 61c9344 commit 024adb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ foreach(bit IN ITEMS 256 384 384_256)
target_include_directories(bls${bit} PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_DIR}/include>)
target_link_libraries(bls${bit} PUBLIC mcl::mcl mcl::mcl_st mcl::mclbn${bit})
target_link_libraries(bls${bit} PUBLIC mcl::mclbn${bit})
set_target_properties(bls${bit} PROPERTIES
POSITION_INDEPENDENT_CODE ON
VERSION ${bls_VERSION}
Expand Down

0 comments on commit 024adb9

Please sign in to comment.