demboyz/premake/premake5.lua

51 lines
1.2 KiB
Lua
Raw Permalink Normal View History

2014-10-29 05:20:24 +01:00
solution "demboyz"
basedir ".."
location (_ACTION)
targetdir "../bin"
2014-10-29 05:20:24 +01:00
startproject "demboyz"
configurations { "Release", "Debug" }
flags { "MultiProcessorCompile" }
symbols "On"
filter "configurations:Debug"
defines { "DEBUG" }
filter "configurations:Release"
optimize "Full"
filter {}
2016-04-17 02:56:57 +02:00
2014-10-29 05:20:24 +01:00
project "demboyz"
kind "ConsoleApp"
language "C++"
filter "configurations:gmake"
buildoptions { "-std=c++17 -Wall" }
linkoptions { "-flto -no-pie -Wall" }
filter {}
files
{
"../demboyz/**.h",
"../demboyz/**.cpp"
}
includedirs
{
2015-06-15 04:58:23 +02:00
"../external/sourcesdk/include",
"../external/celt-e18de77/include",
"../external/SILK_SDK_SRC_FLP_v1.0.9/interface",
"/usr/include/opus",
"../demboyz"
}
links
{
2018-02-13 03:55:28 +01:00
"sourcesdk",
"snappy",
"celt",
"opusenc",
"SKP_SILK_SDK"
}
project "*"
2014-10-29 05:20:24 +01:00
dofile "snappy.lua"
dofile "sourcesdk.lua"
2018-02-13 03:55:28 +01:00
dofile "celt.lua"
dofile "silk.lua"