Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

jsoncpp-namespaced-targets.cmake 360B

il y a 10 mois
1234567
  1. if (TARGET jsoncpp_static)
  2. add_library(JsonCpp::JsonCpp INTERFACE IMPORTED)
  3. set_target_properties(JsonCpp::JsonCpp PROPERTIES INTERFACE_LINK_LIBRARIES "jsoncpp_static")
  4. elseif (TARGET jsoncpp_lib)
  5. add_library(JsonCpp::JsonCpp INTERFACE IMPORTED)
  6. set_target_properties(JsonCpp::JsonCpp PROPERTIES INTERFACE_LINK_LIBRARIES "jsoncpp_lib")
  7. endif ()