5
CMake: Comment construire des projets externes et inclure leurs objectifs
J'ai un projet A qui exporte une bibliothèque statique en tant que cible: install(TARGETS alib DESTINATION lib EXPORT project_a-targets) install(EXPORT project_a-targets DESTINATION lib/alib) Maintenant, je veux utiliser le projet A en tant que projet externe du projet B et inclure ses cibles construites: ExternalProject_Add(project_a URL ...project_a.tar.gz PREFIX ${CMAKE_CURRENT_BINARY_DIR}/project_a CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR> …