Show
Ignore:
Timestamp:
10/05/07 04:54:10 (14 months ago)
Author:
krobillard
Message:

select! evaluation now pushes all values other than function! & call!.
Added ur_decompress().
Now using GLV from the Outguard repository.
gl/project.r now builds thuneGL library.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/gl/project.r

    r458 r483  
    11REBOL [] 
    22 
    3 exe %gx [ 
     3default [ 
    44    warn 
    55    debug 
    6     ;release 
     6;   release 
    77    objdir %obj 
    8     opengl 
     8] 
    99 
     10lib %thuneGL [ 
    1011    include_from %. 
    1112    include_from %.. 
    12     ;include_from %hit 
    13     ;include_from %../util 
    1413    libs_from %.. %thune0 
    15     cflags {-DLANG_THUNE -DTHUNE_GL} 
     14    cflags {-DLANG_THUNE} 
    1615    cflags {-DUR_CONFIG_DT_CODE} 
    1716    cflags {-DNO_AUDIO} 
    1817 
     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    ] 
    1928    macx [ 
    20         cflags {-DOR_BIG_ENDIAN} 
    21  
    2229        include_from %../unix 
    2330        include_from %glv/mac 
    2431        sources [%glv/mac/glv.c] 
    25  
    26         ;include_from %../../../osrc/zlib 
    27         ;libs_from %../../../osrc/zlib [%z] 
    28  
    29         ;include_from %/Users/karl/osrc/libpng-1.2.12 
    30         ;libs_from %/Users/karl/osrc/libpng-1.2.12 [%png] 
    3132 
    3233        include_from %/usr/local/include/freetype2 
     
    3738        lflags {-framework AGL} 
    3839        lflags {-framework Carbon} 
    39  
    40         libs [%freetype %bz2 %png] 
    41         libs [%vorbis %vorbisfile] 
    42     ] 
    43     linux [ 
    44         cflags {-DUSE_XF86VMODE} 
    45         include_from %../unix 
    46         include_from %glv/unix 
    47         sources [ 
    48             %glv/unix/glv.c 
    49             %joystick.c 
    50         ] 
    51         libs_from %/usr/X11R6/lib64 [%X11 %Xxf86vm] 
    52         ;libs_from %/usr/X11R6/lib [%X11 %Xxf86vm] 
    53  
    54         include_from %/usr/include/freetype2 
    55  
    56         libs [%freetype %bz2 %png] 
    57         libs [%openal %alut %vorbis %vorbisfile] 
    5840    ] 
    5941    win32 [ 
     
    8062 
    8163    sources [ 
    82         %../console.c 
    8364        %gx.c 
    8465        %gx_dt.c 
     
    10182    ] 
    10283] 
     84 
     85exe %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]