diff --git a/premake/premake5.lua b/premake/premake5.lua index 1f2c550..8893601 100644 --- a/premake/premake5.lua +++ b/premake/premake5.lua @@ -4,12 +4,12 @@ _SUFFIX = _ACTION workspace "VulkanSample" configurations { "Debug", "Release" } -platforms { "Windows-x64", "Linux-x64" } +platforms { "x64", "Linux-x64" } location "../build" filename ("VulkanSample_" .. _SUFFIX) startproject "VulkanSample" -filter "platforms:Windows-x64" +filter "platforms:x64" system "Windows" architecture "x64" includedirs { "../third_party/mathfu-1.1.0/include", "$(VULKAN_SDK)/Include" } @@ -44,7 +44,7 @@ optimize "On" flags { "LinkTimeOptimization" } targetsuffix ("_Release_" .. _SUFFIX) -filter { "platforms:Windows-x64" } +filter { "platforms:x64" } defines { "WIN32", "_CONSOLE", "PROFILE", "_WINDOWS", "_WIN32_WINNT=0x0601" } links { "vulkan-1" } @@ -52,9 +52,8 @@ filter { "platforms:Linux-x64" } buildoptions { "-std=c++0x" } links { "vulkan" } -filter { "configurations:Debug", "platforms:Windows-x64" } +filter { "configurations:Debug", "platforms:x64" } buildoptions { "/MDd" } filter { "configurations:Release", "platforms:Windows-x64" } buildoptions { "/MD" } -