edits to cycles cmake files so cmake_consistency_check.py can parse them.

This commit is contained in:
Campbell Barton
2011-11-08 20:27:37 +00:00
parent 76f77514d3
commit 33814e0093
14 changed files with 197 additions and 108 deletions

View File

@@ -172,6 +172,12 @@ def cmake_get_src(f):
pass
elif new_file.endswith(".def"):
pass
elif new_file.endswith(".cl"): # opencl
pass
elif new_file.endswith(".cu"): # cuda
pass
elif new_file.endswith(".osl"): # open shading language
pass
else:
raise Exception("unknown file type - not c or h %s -> %s" % (f, new_file))