Changeset 228 for trunk/cairo/cairooo-build.d
- Timestamp:
- 11/03/07 22:54:06 (4 years ago)
- Files:
-
- trunk/cairo/cairooo-build.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cairo/cairooo-build.d
r119 r228 65 65 TARGET_WIN32 = {name:"win32oo", type:"lib", target:"lib/cairooo_win32", 66 66 flags:["-Xwin32"], sources:["cairooo/win32/all.d"]}, 67 TARGET_WIN32_DFL = {name:"win32oo-dfl", type:"lib", 68 target:"lib/cairooo_win32_dfl", 69 flags:["-Xwin32","-Xdfl","-version=cairo_dfl"], 70 sources:["cairooo/win32/all.d"]}, 67 71 TARGET_XLIB = {name:"xliboo", type:"lib", target:"lib/cairooo_xlib", 68 72 sources:["cairooo/xlib/all.d"]}, … … 83 87 const Target[] TARGETS = 84 88 [TARGET_ALL, TARGET_PNG, TARGET_CAIRO, TARGET_GLITZ, TARGET_WIN32, 85 TARGET_ XLIB, TARGET_EXTRA];89 TARGET_WIN32_DFL, TARGET_XLIB, TARGET_EXTRA]; 86 90 const DEFAULT_TARGET = &TARGET_ALL; 87 91 const DEBUG_TARGET_SUFFIX = "_debug"; 88 92 89 93 const char[][] FLAGS = ["-allobj","-cleanup"]; 90 const char[][] FLAGS_DEBUG = ["-debug","-unittest","- g"];94 const char[][] FLAGS_DEBUG = ["-debug","-unittest","-version=Unittest","-g"]; 91 95 const char[][] FLAGS_RELEASE = ["-release","-inline","-O"]; 92 96
