add event profiler, json profile dump, cleanup

This commit is contained in:
Irlan
2017-02-24 20:11:49 -03:00
parent e1038cfb31
commit 689425d9ef
64 changed files with 16135 additions and 531 deletions

View File

@ -160,6 +160,20 @@ solution (solution_name)
external_dir .. "/imgui/**.h",
external_dir .. "/imgui/**.cpp"
}
project "rapidjson"
kind "StaticLib"
language "C++"
location ( solution_dir .. action )
includedirs { external_dir }
vpaths { ["Headers"] = "**.h", ["Sources"] = "**.cpp" }
buildoptions { "-std=c++11" } -- require C++11
files
{
external_dir .. "/rapidjson/**.h",
external_dir .. "/rapidjson/**.cpp"
}
project "testbed"
kind "ConsoleApp"
language "C++"
@ -168,7 +182,6 @@ solution (solution_name)
vpaths { ["Headers"] = "**.h", ["Sources"] = "**.cpp" }
buildoptions { "-std=c++11" } -- GNU/GCC C++11
--common
files
{
inc_dir .. "/testbed/**.h",