File: Prebuilt.cmake

package info (click to toggle)
darktable 2.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 26,388 kB
  • sloc: ansic: 226,545; cpp: 33,844; xml: 11,633; lisp: 8,205; sh: 2,988; perl: 1,703; ruby: 1,196; python: 586; makefile: 294; awk: 110; asm: 46; sql: 38
file content (9 lines) | stat: -rw-r--r-- 358 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
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)