mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Added renamed Display::getPixelDensity() to Display::getPixelDensitySize() and now Display::getPixelDensity() returns the float value of the pixel density.
Moved the global test to tests/test_all. Added a ui_perf_test used to test specific performance issues in the UI. Fixed the element/widget inline style (now respects the specificity). Some optimizations in UIListBox.
This commit is contained in:
20
premake5.lua
20
premake5.lua
@@ -732,12 +732,6 @@ workspace "eepp"
|
||||
build_eepp( "eepp" )
|
||||
|
||||
-- Examples
|
||||
project "eepp-test"
|
||||
set_kind()
|
||||
language "C++"
|
||||
files { "src/test/*.cpp" }
|
||||
build_link_configuration( "eepp-test", true )
|
||||
|
||||
project "eepp-external-shader"
|
||||
set_kind()
|
||||
language "C++"
|
||||
@@ -826,6 +820,20 @@ workspace "eepp"
|
||||
files { "src/tools/texturepacker/*.cpp" }
|
||||
build_link_configuration( "eepp-TexturePacker", true )
|
||||
|
||||
-- Tests
|
||||
project "eepp-test"
|
||||
set_kind()
|
||||
language "C++"
|
||||
files { "src/tests/test_all/*.cpp" }
|
||||
build_link_configuration( "eepp-test", true )
|
||||
|
||||
project "eepp-ui-perf-test"
|
||||
set_kind()
|
||||
language "C++"
|
||||
files { "src/tests/ui_perf_test/*.cpp" }
|
||||
includedirs { "src/thirdparty" }
|
||||
build_link_configuration( "eepp-ui-perf-test", true )
|
||||
|
||||
if os.isfile("external_projects.lua") then
|
||||
dofile("external_projects.lua")
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user