Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-03-15 02:17:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-15 02:17:52 +0300
commit82783cd0cd8e742611adb83327431e91806a39db (patch)
tree6292ac4e03483cf323e5e3fe838cf8a958701fe6 /build_files
parentf2b1645a75096076910b0c0d46c9b4d5e42c4698 (diff)
pep8 edits and remove commented code from last commit.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/cmake_qtcreator_project.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/build_files/cmake/cmake_qtcreator_project.py b/build_files/cmake/cmake_qtcreator_project.py
index 9adc14455f7..a6d6906d26d 100644
--- a/build_files/cmake/cmake_qtcreator_project.py
+++ b/build_files/cmake/cmake_qtcreator_project.py
@@ -78,7 +78,7 @@ def is_svn_file(filename):
def is_project_file(filename):
- return (is_c_any(filename) or is_cmake(filename)) # and is_svn_file(filename)
+ return (is_c_any(filename) or is_cmake(filename)) # and is_svn_file(filename)
def cmake_advanced_info():
@@ -185,7 +185,6 @@ def main():
includes = list(set(includes) | set(dirname(f) for f in files_rel if is_c_header(f)))
includes.sort()
-
PROJECT_NAME = "Blender"
f = open(join(base, "%s.files" % PROJECT_NAME), 'w')
f.write("\n".join(files_rel))