Browse Source

Use Premake workspace token instead of builddir to fix builds for dependent projects.

pull/696/head
Joao Matos 9 years ago
parent
commit
32efe89731
  1. 4
      build/Helpers.lua

4
build/Helpers.lua

@ -33,7 +33,7 @@ function SafePath(path) @@ -33,7 +33,7 @@ function SafePath(path)
end
function SetupNativeProject()
location (path.join(builddir, "projects"))
location ("%{wks.location}/projects")
local c = configuration "Debug"
defines { "DEBUG" }
@ -65,7 +65,7 @@ end @@ -65,7 +65,7 @@ end
function SetupManagedProject()
language "C#"
location (path.join(builddir, "projects"))
location ("%{wks.location}/projects")
if not os.is("macosx") then
local c = configuration { "vs*" }

Loading…
Cancel
Save