https://github.com/aparis69/Desertscapes-Simulation
Revision 7065a8e87831812dfdc9ae02675c02cafe870744 authored by Axel on 04 September 2019, 08:02:17 UTC, committed by Axel on 04 September 2019, 08:02:17 UTC
1 parent 7794a5e
Tip revision: 7065a8e87831812dfdc9ae02675c02cafe870744 authored by Axel on 04 September 2019, 08:02:17 UTC
Updated readme file and premake.lua
Updated readme file and premake.lua
Tip revision: 7065a8e
premake4.lua
solution "Desertscape"
configurations { "Debug", "Release" }
platforms { "x64" }
includedirs { ".", "../Code/Include", "/usr/include/" }
rootDir = path.getabsolute("../")
configuration "Debug"
targetdir "./Out/Debug"
defines { "DEBUG" }
flags { "Symbols" }
configuration "Release"
targetdir "./Out/Release"
flags { "OptimizeSpeed" }
configuration "linux"
buildoptions { "-mtune=native -march=native" }
buildoptions { "-std=c++14" }
buildoptions { "-w" }
buildoptions { "-flto -g"}
linkoptions { "-flto"}
linkoptions { "-g"}
fileList = { rootDir .. "/Code/Source/*.cpp", rootDir .. "/Code/Include/*.h" }
project("Desertscape")
language "C++"
kind "ConsoleApp"
targetdir "Out"
files ( fileList )
Computing file changes ...