jemalloc
外部ライブラリとして依存するプロジェクトがあります。jemalloc
順番に依存しpthread
ます。cmake では、これら 2 つのライブラリ間の依存関係をどのように指定できますか?
これまでのところ、私は試しました:
target_link_libraries(jemalloc pthread)
jemalloc
外部ライブラリであるため機能しませんtarget_link_libraries(current_library jemalloc pthread)
これは機能しますが、使用されるすべてのライブラリでpthread
afterを指定するのは不便です。また、実行可能ファイルとテストごとに追加する必要があります。jemalloc
jemalloc
jemalloc pthread