/ld20

To get this branch, use:
bzr branch /bzr/ld20

« back to all changes in this revision

Viewing changes to premake4.lua

  • Committer: Josh
  • Date: 2012-04-06 21:54:05 UTC
  • Revision ID: josh@pystone-20120406215405-gs2afqsbmqemfpl0
windows bits for premake

Show diffs side-by-side

added added

removed removed

12
12
     _MONOCLE_APP_BASE = _OPTIONS["monocle"]
13
13
     dofile(_OPTIONS["monocle"] .. "/premake4-helper.lua")
14
14
     libdirs(_BUILD_BASE) -- where monocle puts libMonocleCore[Debug].a
 
15
     monocle_os_defines()
15
16
     monocle_os_includedirs()
16
17
     monocle_os_links_base()
17
18
  else 
28
29
    language "C++"
29
30
    files { "**.h", "**.cpp" }
30
31
 
 
32
    if os.is("windows") then
 
33
       libdirs {"/c/WINDOWS/system32"}
 
34
    end
 
35
 
31
36
    configuration "Debug"
32
37
      defines { "DEBUG" }
33
38
      flags { "Symbols" }