chaos pt 2
[carveJwlIkooP6JGAAIwe30JlM.git] / build.c
diff --git a/build.c b/build.c
index 2b3d2a7dd1d02ffde49d25521cd72f24cd314788..0470a3b926f199fc6b91e3c52a86c5a33bd27b66 100644 (file)
--- a/build.c
+++ b/build.c
@@ -33,6 +33,7 @@ void build_server( enum compiler compiler ){
 void build_sqlite3( enum compiler compiler ){
    vg_build_start( "sqlite3.o", compiler );
    vg_build_object( "-c dep/sqlite3/sqlite3.c " );
+   vg_build_link( "-ldl " );
    vg_build();
 }
 
@@ -48,7 +49,7 @@ void build_gameserver( enum compiler compiler ){
 
    vg_build_include( "-I./dep " );
 
-   vg_build_link( "-lm -lsdkencryptedappticket -lsteam_api " );
+   vg_build_link( "-ldl -lpthread -lm -lsdkencryptedappticket -lsteam_api " );
    vg_build_library_dir( "-L./vg/dep/steam " );
 
    //vg_build_bin_dependency_file( "vg/dep/steam/steamclient.so" );?????
@@ -244,7 +245,7 @@ void build_shaders(void){
    /* Scene */
    _S( "scene_standard",            "scene.vs", "scene_standard.fs" );
    _S( "scene_standard_alphatest",  "scene.vs", "scene_standard_alphatest.fs" );
-   _S( "scene_override",            "scene.vs", "scene_override.fs" );
+   _S( "scene_override",            "scene_override.vs", "scene_override.fs" );
    _S( "scene_fxglow",              "scene_fxglow.vs", "scene_fxglow.fs" );
    _S( "scene_vertex_blend",        "scene.vs", "scene_vertex_blend.fs" );
    _S( "scene_terrain",             "scene.vs", "scene_terrain.fs" );
@@ -259,6 +260,7 @@ void build_shaders(void){
 
    /* Models */
    _S( "model_sky",            "model.vs",         "model_sky.fs" );
+   _S( "model_sky_space",      "model.vs",         "model_sky_space.fs" );
    _S( "model_menu",           "model.vs",         "model_menu.fs" );
    _S( "model_character_view", "model_skinned.vs", "model_character_view.fs" );
    _S( "model_board_view",     "model.vs",         "model_character_view.fs" );
@@ -273,5 +275,6 @@ void build_shaders(void){
    _S( "blit",      "blit.vs",      "blit.fs" );
    _S( "blitblur",  "blit.vs",      "blitblur.fs" );
    _S( "blitcolour","blit.vs",      "colour.fs" );
+   _S( "blit_transition", "blit.vs", "blit_transition.fs" );
    _S( "routeui",   "routeui.vs",   "routeui.fs" );
 }