Advertisement
orgads

Untitled

Aug 14th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. excludeFiles: {
  2.     var list = [
  3.         "foo.cpp",
  4.     ]
  5.     if (qbs.targetOS.contains("windows")) {
  6.         list.push([
  7.                   "foo_linux.cpp",
  8.                   ])
  9.     } else {
  10.         list.push([
  11.                   "foo_win.cpp",
  12.                   ])
  13.     }
  14.     print(list);
  15.     return list
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement