Skip to content

Instantly share code, notes, and snippets.

@JohannesMP
Created June 27, 2015 06:38
Show Gist options
  • Save JohannesMP/74f2c3b11d538c0a7511 to your computer and use it in GitHub Desktop.
Save JohannesMP/74f2c3b11d538c0a7511 to your computer and use it in GitHub Desktop.
-- premake5.lua
solution "MyApp_Solution"
location "../Project"
configurations { "Debug", "Release" }
project "MyApp_Project"
location "../Project"
kind "ConsoleApp"
language "C++"
targetdir "../Builds/%{cfg.buildcfg}_bin/"
objdir "../Builds/%{cfg.buildcfg}_obj/"
-- source files
files
{
"../Source/**.h",
"../Source/**.cpp"
}
excludes { }
includedirs { }
libdirs { }
filter "configurations:Debug"
defines { "DEBUG" }
flags { "Symbols" }
filter "configurations:Release"
defines { "NDEBUG" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment