|
Revision 886, 0.6 kB
(checked in by vossg, 1 year ago)
|
cleaned : system build.info (please keep this clean I don't want to compile
the whole ****** thing to run some system tests)
moved testImageLoader to where it belongs
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
if option_pass: |
|---|
| 4 |
print "Processing option pass" |
|---|
| 5 |
else: |
|---|
| 6 |
zlib_option = opts.GetOption("zlib") |
|---|
| 7 |
|
|---|
| 8 |
library = "OSGSystem" |
|---|
| 9 |
osg_dep_libs = ['OSGBase'] |
|---|
| 10 |
|
|---|
| 11 |
for option in [zlib_option]: |
|---|
| 12 |
if option.isAvailable(): |
|---|
| 13 |
libs.append(option.library) |
|---|
| 14 |
if option.incDir: |
|---|
| 15 |
cpppath.append(option.incDir) |
|---|
| 16 |
if option.libDir: |
|---|
| 17 |
libpath.append(option.libDir) |
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
osg_test_libs = ['OSGBase', 'OSGSystem'] |
|---|
| 21 |
test_cpppath = [] |
|---|
| 22 |
test_libpath = [] |
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
if "darwin" == platform: |
|---|
| 26 |
frameworks = ['OpenGL', 'GLUT'] |
|---|
| 27 |
frameworkpath = [] |
|---|