From c7732f64fb37f74afa859670fdde5b0e598d82ba Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Sun, 1 Sep 2013 14:24:16 -0700 Subject: [PATCH] Moved stdint.h into separate dir and added vs2008 specific includedirs. --- include/compat/msvc/{ => pre1600}/stdint.h | 0 premake/toolchain.lua | 3 +++ 2 files changed, 3 insertions(+) rename include/compat/msvc/{ => pre1600}/stdint.h (100%) diff --git a/include/compat/msvc/stdint.h b/include/compat/msvc/pre1600/stdint.h similarity index 100% rename from include/compat/msvc/stdint.h rename to include/compat/msvc/pre1600/stdint.h diff --git a/premake/toolchain.lua b/premake/toolchain.lua index 962688e..6f4a36f 100755 --- a/premake/toolchain.lua +++ b/premake/toolchain.lua @@ -203,6 +203,9 @@ function toolchain(_buildDir, _libDir) "/Ob2", -- The Inline Function Expansion } + configuration { "vs2008" } + includedirs { bxDir .. "include/compat/msvc/pre1600" } + configuration { "x32", "vs*" } targetdir (_buildDir .. "win32_" .. _ACTION .. "/bin") objdir (_buildDir .. "win32_" .. _ACTION .. "/obj")