https://github.com/aparis69/Desertscapes-Simulation
Revision f06656a1517c49df4e617c5c601be0e416511755 authored by Axel Paris on 08 June 2020, 09:15:08 UTC, committed by Axel Paris on 08 June 2020, 09:15:08 UTC
1 parent 2e5ddef
Tip revision: f06656a1517c49df4e617c5c601be0e416511755 authored by Axel Paris on 08 June 2020, 09:15:08 UTC
fixed makefile - was not up to date!
fixed makefile - was not up to date!
Tip revision: f06656a
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 { "-fopenmp" }
linkoptions { "-flto"}
linkoptions { "-g"}
fileList = { rootDir .. "/Code/Source/*.cpp", rootDir .. "/Code/Include/*.h" }
project("Desertscape")
language "C++"
kind "ConsoleApp"
targetdir "Out"
files ( fileList )
![swh spinner](/static/img/swh-spinner.gif)
Computing file changes ...