Changeset 198 for trunk/python2/SConstruct
- Timestamp:
- 05/31/10 15:20:34 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python2/SConstruct
r196 r198 28 28 29 29 nenv.config = config 30 nenv.Append(CFLAGS = "-I../include/ -Iinclude") 30 if config.DEBUG: 31 nenv.Append(CFLAGS = "-ggdb -pedantic -Wall -std=gnu99") 32 nenv.Append(CPPPATH=['../include', 'include']) 33 nenv.python_cppflags = '-I/usr/include/python2.5_d' 34 else: 35 nenv.Append(CFLAGS = "-ggdb -pedantic -Wall") 36 nenv.Append(CPPPATH=['../include', 'include']) 37 31 38 nenv.Append(LIBPATH="../lib") 32 39 nenv.Append(LINKFLAGS="")
Note: See TracChangeset
for help on using the changeset viewer.