File: CheckFunctionKeywords.cmake

package info (click to toggle)
lldpd 1.0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,648 kB
  • sloc: ansic: 90,496; sh: 5,081; python: 1,397; makefile: 659; awk: 19
file content (14 lines) | stat: -rw-r--r-- 545 bytes parent folder | download | duplicates (37)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include(CheckCSourceCompiles)

macro(check_function_keywords _wordlist)
  set(${_result} "")
  foreach(flag ${_wordlist})
    string(REGEX REPLACE "[-+/ ()]" "_" flagname "${flag}")
    string(TOUPPER "${flagname}" flagname)
    set(have_flag "HAVE_${flagname}")
    check_c_source_compiles("${flag} void func(); void func() { } int main() { func(); return 0; }" ${have_flag})
    if(${have_flag} AND NOT ${_result})
      set(${_result} "${flag}")
    endif(${have_flag} AND NOT ${_result})
  endforeach(flag)
endmacro(check_function_keywords)