Skip to content

Commit

Permalink
CMakeLists.txt: fix link path (and possibly install rpath) for libuta
Browse files Browse the repository at this point in the history
  • Loading branch information
DDvO committed Mar 14, 2024
1 parent 0066a5f commit f4fdc40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ target_link_libraries(cmpClient
${OPENSSL_LIBRARIES}
)
if(DEFINED ENV{SECUTILS_USE_UTA})
target_link_libraries(cmpClient
uta
)
target_link_libraries(cmpClient uta)
target_link_directories(cmpClient PRIVATE /usr/local/lib)
# set(CMAKE_INSTALL_RPATH "/usr/local/lib")
endif()
if(DEFINED ENV{SECUTILS_NO_TLS})
add_compile_definitions(SECUTILS_NO_TLS=1)
Expand Down

0 comments on commit f4fdc40

Please sign in to comment.