<div dir="ltr">This is scheduled to be fixed in the next release by allowing OBJECT libraries to be used in target_link_libraries.<div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, May 8, 2018 at 7:46 PM Miklos Espak <<a href="mailto:espakm@gmail.com">espakm@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div><div><div><div><div><div>Hi,<br><br></div>I have an abstract class that I want to compile into many applications. Something like this:<br><br></div>baseapp.h<br></div>baseapp.cpp<br></div>app1.h<br></div>app1.cpp<br></div><div>app2.h<br></div><div>app2.cpp<br></div><div>...<br><br></div>I thought of making an object library from baseapp because I want to compile it only once and it is used only internally.<br><br></div>However, baseapp depends on other libraries, e.g. dcmjpeg, mylib1 and mylib2, and the include directories of these of these libraries are not found. For regular libraries and executables, the include directories are picked up from the target property of the linked libraries, but for object libraries you cannot specify target link libraries.<br><br></div>I came up with this:<br><br>add_library(baseapp OBJECT baseapp.h baseapp.cpp)<br>target_include_directories(baseapp PUBLIC<br>  $<TARGET_PROPERTY:dcmjpeg,INCLUDE_DIRECTORIES><br>  $<TARGET_PROPERTY:mylib1,INCLUDE_DIRECTORIES><br>  $<TARGET_PROPERTY:mylib2,INCLUDE_DIRECTORIES>)<br><br></div>This works, but it does not look too pretty to me.<br><div><div><div><br></div><div>I am wondering if there is a more elegant way.<br><br></div><div>E.g. would it be a good idea to propagate the include dirs with the add_dependencies command? E.g. instead of the above, one could write:<br><br></div><div>add_dependencies(baseapp dcmjpeg mylib1 mylib2)<br></div><div><br></div><div>Cheers,<br></div><div>Miklos<br><br></div></div></div></div>
-- <br>
<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" rel="noreferrer" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
<br>
Kitware offers various services to support the CMake community. For more information on each offering, please visit:<br>
<br>
CMake Support: <a href="http://cmake.org/cmake/help/support.html" rel="noreferrer" target="_blank">http://cmake.org/cmake/help/support.html</a><br>
CMake Consulting: <a href="http://cmake.org/cmake/help/consulting.html" rel="noreferrer" target="_blank">http://cmake.org/cmake/help/consulting.html</a><br>
CMake Training Courses: <a href="http://cmake.org/cmake/help/training.html" rel="noreferrer" target="_blank">http://cmake.org/cmake/help/training.html</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="https://cmake.org/mailman/listinfo/cmake" rel="noreferrer" target="_blank">https://cmake.org/mailman/listinfo/cmake</a><br>
</blockquote></div>