Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Animation-System Implementation #58

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ add_executable(
ashura/std/tests/enum.cc
ashura/std/tests/async.cc
ashura/std/tests/list.cc
ashura/std/tests/range.cc
ashura/std/tests/main.cc
ashura/std/tests/hash_map.cc
ashura/std/tests/result.cc
Expand All @@ -209,6 +210,7 @@ target_include_directories(ashura_gpu PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})

add_library(
ashura_engine
ashura/engine/animation.cc
ashura/engine/engine.cc
ashura/engine/font.cc
ashura/engine/font_impl.cc
Expand Down Expand Up @@ -252,7 +254,9 @@ target_include_directories(

add_executable(
ashura_engine_tests
ashura/engine/tests/main.cc ashura/engine/tests/render_text.cc
ashura/engine/tests/main.cc
ashura/engine/tests/animation.cc
ashura/engine/tests/render_text.cc
ashura/engine/tests/views.cc ashura/engine/tests/text_compositor.cc)
target_link_libraries(ashura_engine_tests ashura_std ashura_engine GTest::gtest)

Expand Down
2 changes: 1 addition & 1 deletion ashura/engine/animation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
namespace ash
{

} // namespace ash
} // namespace ash
Loading
Loading