Changeset 3012 for cel/trunk/plugins/behaviourlayer/python/Jamfile
- Timestamp:
- 2007-10-02 23:54:01 (4 years ago)
- Files:
-
- 1 modified
-
cel/trunk/plugins/behaviourlayer/python/Jamfile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cel/trunk/plugins/behaviourlayer/python/Jamfile
r2655 r3012 36 36 { 37 37 SEARCH on $(blcelcpp) = $(SEARCH_SOURCE) ; 38 local frozenpy = $(blcelpy:G=frozenblcelpy) ;39 SEARCH on $(frozenpy) = [ ConcatDirs $(TOP) scripts ] ;40 Copy $(blcelpy) : $(frozenpy) ;41 Depends $(blcelpy) : $(frozenpy) ;42 38 } 43 39 } … … 74 70 # blpython plugin. 75 71 #-------- 72 local swigruntime = swigpyruntime.h ; 73 if $(CMD.SWIG) 74 { 75 SwigExternalRuntime $(swigruntime) : 76 python : 77 -c++ -shadow : 78 $(SEARCH_SOURCE) [ ConcatDirs $(TOP) scripts python ] : 79 blpython ; 80 Depends blpythonclean : blpythonswigclean ; 81 } 82 else 83 { 84 SEARCH on $(swigruntime) = $(SEARCH_SOURCE) ; 85 } 86 87 save_HDRS = $(HDRS) ; 88 HDRS = [ on $(swigruntime) GetVar LOCATE ] $(HDRS) ; 76 89 Plugin blpython : blpython.cpp blpython.h pytocel.cpp PYCEL_py.cpp ; 77 90 LinkWith blpython : cel_python ; 78 91 ExternalLibs blpython : PYTHON CRYSTAL ; 79 92 CFlags blpython : $(CELPYTHON.CFLAGS) ; 80 93 HDRS = $(save_HDRS) ; 94 81 95 #-------- 82 96 # blcelmod -- Pure Python module
