From ab48236710470451a8ce297668b6bc8c2f980792 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Sun, 14 Sep 2014 08:44:10 +0200 Subject: [PATCH] Added IDE hints for MSVC --- ogl_editor/tundra.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/ogl_editor/tundra.lua b/ogl_editor/tundra.lua index e7fb634..7712ee0 100644 --- a/ogl_editor/tundra.lua +++ b/ogl_editor/tundra.lua @@ -45,4 +45,22 @@ Build { Config { Name = "win32-msvc", DefaultOnHost = { "windows" }, Inherit = win32, Tools = { "msvc" } }, Config { Name = "linux-gcc", DefaultOnHost = { "linux" }, Inherit = linux, Tools = { "gcc" } }, }, + + IdeGenerationHints = { + Msvc = { + PlatformMappings = { + ['win32-msvc'] = 'Win32', + }, + + VariantMappings = { + ['production'] = 'Production', + ['release'] = 'Release', + ['debug'] = 'Debug', + }, + }, + + MsvcSolutions = { + ['RocketEditor.sln'] = { } -- will get everything + }, + }, }