2014-10-29 05:20:24 +01:00
|
|
|
|
|
|
|
solution "demboyz"
|
|
|
|
basedir ".."
|
|
|
|
location (_ACTION)
|
2015-09-01 05:58:47 +02:00
|
|
|
targetdir "../bin"
|
2014-10-29 05:20:24 +01:00
|
|
|
startproject "demboyz"
|
2021-05-01 18:38:37 +02:00
|
|
|
configurations { "Release", "Debug" }
|
2015-05-15 23:35:08 +02:00
|
|
|
flags { "MultiProcessorCompile", "Symbols" }
|
2015-06-14 23:27:21 +02:00
|
|
|
|
2015-09-01 05:58:47 +02:00
|
|
|
configuration "Debug"
|
|
|
|
defines { "DEBUG" }
|
|
|
|
configuration "Release"
|
|
|
|
optimize "Full"
|
|
|
|
configuration {}
|
2016-04-17 02:56:57 +02:00
|
|
|
|
2014-10-29 05:20:24 +01:00
|
|
|
project "demboyz"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
language "C++"
|
2018-02-14 02:37:38 +01:00
|
|
|
configuration "gmake"
|
2021-05-01 18:38:37 +02:00
|
|
|
buildoptions { "-std=c++17 -Wall" }
|
|
|
|
linkoptions { "-flto -no-pie -Wall" }
|
2018-02-14 02:37:38 +01:00
|
|
|
configuration {}
|
2015-05-13 02:39:56 +02:00
|
|
|
files
|
|
|
|
{
|
2015-06-14 23:07:33 +02:00
|
|
|
"../demboyz/**.h",
|
2018-02-13 03:08:01 +01:00
|
|
|
"../demboyz/**.cpp"
|
2015-05-13 02:39:56 +02:00
|
|
|
}
|
|
|
|
includedirs
|
|
|
|
{
|
2015-06-15 04:58:23 +02:00
|
|
|
"../external/sourcesdk/include",
|
2018-03-30 23:17:16 +02:00
|
|
|
"../external/celt-e18de77/include",
|
2021-05-01 18:38:37 +02:00
|
|
|
"../external/SILK_SDK_SRC_FLP_v1.0.9/interface",
|
|
|
|
"/usr/include/opus",
|
2015-06-14 22:15:08 +02:00
|
|
|
"../demboyz"
|
2015-05-13 02:39:56 +02:00
|
|
|
}
|
2018-02-13 03:08:01 +01:00
|
|
|
links
|
|
|
|
{
|
2018-02-13 03:55:28 +01:00
|
|
|
"sourcesdk",
|
2021-05-01 18:38:37 +02:00
|
|
|
"snappy",
|
|
|
|
"celt",
|
|
|
|
"opusenc",
|
|
|
|
"SKP_SILK_SDK"
|
2018-02-13 03:08:01 +01:00
|
|
|
}
|
|
|
|
project "*"
|
2014-10-29 05:20:24 +01:00
|
|
|
|
2018-02-13 03:08:01 +01:00
|
|
|
dofile "snappy.lua"
|
|
|
|
dofile "sourcesdk.lua"
|
2018-02-13 03:55:28 +01:00
|
|
|
dofile "celt.lua"
|
2021-05-01 18:38:37 +02:00
|
|
|
dofile "silk.lua"
|