29 lines
		
	
	
		
			686 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			686 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
 | 
						|
solution "demboyz"
 | 
						|
    basedir ".."
 | 
						|
    location (_ACTION)
 | 
						|
    startproject "demboyz"
 | 
						|
    configurations { "Debug", "Release" }
 | 
						|
    platforms "x32"
 | 
						|
    
 | 
						|
    vpaths
 | 
						|
    {
 | 
						|
        ["Header Files"] = { "../**.h" },
 | 
						|
        ["Source Files"] = { "../**.cpp" }
 | 
						|
    }
 | 
						|
    
 | 
						|
    project "demboyz"
 | 
						|
        kind "ConsoleApp"
 | 
						|
        language "C++"
 | 
						|
        files { "../demboyz/**.h", "../demboyz/**.cpp" }
 | 
						|
 | 
						|
        configuration "Debug"
 | 
						|
            targetdir (_ACTION .. "/build/Debug")
 | 
						|
            defines { "DEBUG" }
 | 
						|
            flags { "Symbols" }
 | 
						|
 | 
						|
        configuration "Release"
 | 
						|
            targetdir (_ACTION .. "/build/Release")
 | 
						|
            defines { "NDEBUG" }
 | 
						|
            optimize "Full"
 |