Changeset 483 for trunk/thune/gl/project.r
- Timestamp:
- 10/05/07 04:54:10 (14 months ago)
- Files:
-
- 1 modified
-
trunk/thune/gl/project.r (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/gl/project.r
r458 r483 1 1 REBOL [] 2 2 3 exe %gx[3 default [ 4 4 warn 5 5 debug 6 ;release6 ; release 7 7 objdir %obj 8 opengl 8 ] 9 9 10 lib %thuneGL [ 10 11 include_from %. 11 12 include_from %.. 12 ;include_from %hit13 ;include_from %../util14 13 libs_from %.. %thune0 15 cflags {-DLANG_THUNE -DTHUNE_GL}14 cflags {-DLANG_THUNE} 16 15 cflags {-DUR_CONFIG_DT_CODE} 17 16 cflags {-DNO_AUDIO} 18 17 18 linux [ 19 cflags {-DUSE_XF86VMODE} 20 include_from %../unix 21 include_from %glv/x11 22 sources [ 23 %glv/x11/glv.c 24 %joystick.c 25 ] 26 include_from %/usr/include/freetype2 27 ] 19 28 macx [ 20 cflags {-DOR_BIG_ENDIAN}21 22 29 include_from %../unix 23 30 include_from %glv/mac 24 31 sources [%glv/mac/glv.c] 25 26 ;include_from %../../../osrc/zlib27 ;libs_from %../../../osrc/zlib [%z]28 29 ;include_from %/Users/karl/osrc/libpng-1.2.1230 ;libs_from %/Users/karl/osrc/libpng-1.2.12 [%png]31 32 32 33 include_from %/usr/local/include/freetype2 … … 37 38 lflags {-framework AGL} 38 39 lflags {-framework Carbon} 39 40 libs [%freetype %bz2 %png]41 libs [%vorbis %vorbisfile]42 ]43 linux [44 cflags {-DUSE_XF86VMODE}45 include_from %../unix46 include_from %glv/unix47 sources [48 %glv/unix/glv.c49 %joystick.c50 ]51 libs_from %/usr/X11R6/lib64 [%X11 %Xxf86vm]52 ;libs_from %/usr/X11R6/lib [%X11 %Xxf86vm]53 54 include_from %/usr/include/freetype255 56 libs [%freetype %bz2 %png]57 libs [%openal %alut %vorbis %vorbisfile]58 40 ] 59 41 win32 [ … … 80 62 81 63 sources [ 82 %../console.c83 64 %gx.c 84 65 %gx_dt.c … … 101 82 ] 102 83 ] 84 85 exe %gx [ 86 opengl 87 cflags {-DLANG_THUNE -DTHUNE_GL} 88 libs_from %. %thuneGL 89 linux [ 90 libs_from %/usr/X11R6/lib64 [%X11 %Xxf86vm] 91 ;libs_from %/usr/X11R6/lib [%X11 %Xxf86vm] 92 libs [%freetype %bz2 %png] 93 libs [%openal %alut %vorbis %vorbisfile] 94 ] 95 macx [ 96 libs [%freetype %bz2 %png] 97 libs [%vorbis %vorbisfile] 98 ] 99 sources [ 100 %../console.c 101 ] 102 ]
