summaryrefslogtreecommitdiffstats
path: root/build/qmake/mkspecs/features/functions.prf
blob: 8d0df1a4e5b70dfc78274dce4bfeb1165c5b71d2 (plain)
1
2
3
4
5
6
7
8
9
# Map to the correct target type for gyp
defineReplace(toGypTargetType) {
  equals(TEMPLATE, "app"):return("executable")
  equals(TEMPLATE, "lib") {
    CONFIG(static): return("static_library")
    return("shared_library")
  }
  return("none")
}