Changeset 460
- Timestamp:
- 01/02/07 07:13:41 (2 years ago)
- Files:
-
- trunk/SConstruct (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/SConstruct
r451 r460 336 336 # the active library object 337 337 testFiles = [f for f in files if (os.path.basename(f).startswith("test") and 338 f.endswith(".cpp"))];338 os.path.splitext(f)[1] in [".cpp",".cc",".mm"])]; 339 339 unittestFiles = [f for f in files if (os.path.basename(f).endswith("Test.cpp") and 340 340 os.path.basename(f).startswith("OSG"))]; 341 sourceFiles = [f for f in files if (os.path.splitext(f)[1] in [".cpp", ".cc" ] and341 sourceFiles = [f for f in files if (os.path.splitext(f)[1] in [".cpp", ".cc", ".mm"] and 342 342 os.path.basename(f).startswith("OSG") and 343 343 f not in testFiles and f not in unittestFiles)];
