Changeset 466 for trunk/nv.lua


Ignore:
Timestamp:
09/04/15 17:46:48 (10 years ago)
Author:
epyon
Message:
  • support for separate runtime CRT build
  • wx fix for new gl headers
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nv.lua

    r410 r466  
     1NV_RUNTIME = NV_RUNTIME or "scrt"
     2
    13project "nv-core"
    2         location (_ACTION)
     4        location (_ACTION.."/"..NV_RUNTIME)
    35        language "C++"
    46        kind "StaticLib"
     
    79
    810project "nv-lib"
    9         location (_ACTION)
     11        location (_ACTION.."/"..NV_RUNTIME)
    1012        language "C++"
    1113        kind "StaticLib"
     
    1517
    1618project "nv-curses"
    17         location (_ACTION)
     19        location (_ACTION.."/"..NV_RUNTIME)
    1820        language "C++"
    1921        kind "StaticLib"
     
    2325
    2426project "nv-fmod"
    25         location (_ACTION)
     27        location (_ACTION.."/"..NV_RUNTIME)
    2628        language "C++"
    2729        kind "StaticLib"
     
    3133
    3234project "nv-sdl"
    33         location (_ACTION)
     35        location (_ACTION.."/"..NV_RUNTIME)
    3436        language "C++"
    3537        kind "StaticLib"
     
    3941
    4042project "nv-gl"
    41         location (_ACTION)
     43        location (_ACTION.."/"..NV_RUNTIME)
    4244        language "C++"
    4345        kind "StaticLib"
     
    4749
    4850project "nv-lua"
    49         location (_ACTION)
     51        location (_ACTION.."/"..NV_RUNTIME)
    5052        language "C++"
    5153        kind "StaticLib"
     
    5557
    5658project "nv-rogue"
    57         location (_ACTION)
     59        location (_ACTION.."/"..NV_RUNTIME)
    5860        language "C++"
    5961        kind "StaticLib"
     
    6365
    6466project "nv-io"
    65         location (_ACTION)
     67        location (_ACTION.."/"..NV_RUNTIME)
    6668        language "C++"
    6769        kind "StaticLib"
     
    7173
    7274project "nv-gfx"
    73         location (_ACTION)
     75        location (_ACTION.."/"..NV_RUNTIME)
    7476        language "C++"
    7577        kind "StaticLib"
     
    7981
    8082project "nv-engine"
    81         location (_ACTION)
     83        location (_ACTION.."/"..NV_RUNTIME)
    8284        language "C++"
    8385        kind "StaticLib"
     
    8789
    8890project "nv-formats"
    89         location (_ACTION)
     91        location (_ACTION.."/"..NV_RUNTIME)
    9092        language "C++"
    9193        kind "StaticLib"
     
    9597
    9698project "nv-gui"
    97         location (_ACTION)
     99        location (_ACTION.."/"..NV_RUNTIME)
    98100        language "C++"
    99101        kind "StaticLib"
Note: See TracChangeset for help on using the changeset viewer.