Ignore:
Timestamp:
06/15/13 02:05:49 (12 years ago)
Author:
epyon
Message:
  • Nova now properly compiles and works under: mingw GCC 4.6 32-bit target mingw GCC 4.6 64-bit targte clang 3.2 32-bit target (64-bit clang doesn't work under windows)
  • warning removal will follow soon
Location:
trunk/tests/render_test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/render_test/premake4.lua

    r61 r120  
    1 if _ACTION == nil then
    2         print "Error! You must specify target build"
    3         print "Example: ./premake4 gmake"
    4         print "    This will create makefiles for Linux"
    5         print ""
    6         print "Aborting!"
    7         print ""
    8         return
    9 end
    10 
    111solution "nv_render_test"
    122        configurations { "debug", "release" }
     
    155        flags { "ExtraWarnings", "NoPCH" }
    166
    17         -- For starters, check the target build.
    18         -- If this is a gmake build we must add these
    19         -- flags to enable C++11 support.
    20         if _ACTION == "gmake" then
    21                 buildoptions "-std=c++11"
    22         end
    23 
    247        configuration "debug"
    258                defines { "DEBUG" }
    269                flags { "Symbols", "StaticRuntime" }
    27                 objdir (_ACTION.."/debug")
     10                objdir (_ACTION or "".."/debug")
    2811
    2912        configuration "release"
    3013                defines { "NDEBUG" }
    3114                flags { "Optimize", "StaticRuntime" }
    32                 objdir (_ACTION.."/release")
     15                objdir (_ACTION or "".."/release")
    3316
    3417        dofile("render_test.lua")
  • trunk/tests/render_test/render_test.lua

    r46 r120  
    55        includedirs { "../../" }
    66        targetname "rl"
    7         defines { "_SCL_SECURE_NO_WARNINGS" }
    87        links { "nv" }
    98 
Note: See TracChangeset for help on using the changeset viewer.