swh:1:snp:c7c108084bc0bf3d81436bf980b46e98bd338453
Raw File
Tip revision: b281c39d04e01de3baf06c482a8fe4496d3393b2 authored by johannes hanika on 16 November 2015, 16:47:25 UTC
Merge remote-tracking branch 'origin/pr/1035'
Tip revision: b281c39
Prebuilt.cmake
macro (use_prebuilt_binary _binary)
  if(NOT STANDALONE)
    get_property(PREBUILT_PACKAGES TARGET prepare PROPERTY PREBUILT)
    list(FIND PREBUILT_PACKAGES ${_binary} _index)
    if(_index LESS 0)
      set_property(TARGET prepare APPEND PROPERTY PREBUILT ${_binary})
    endif(_index LESS 0)
  endif(NOT STANDALONE)
endmacro (use_prebuilt_binary _binary)
back to top