Skip to content

Commit

Permalink
fix: blueprint circle compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Milerius committed Oct 25, 2019
1 parent f2da13f commit 3b0b4cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/geometry/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ target_sources(antara_geometry_shared_sources PRIVATE
antara/gaming/geometry/component.circle.cpp
antara/gaming/geometry/component.rectangle.cpp)
target_include_directories(antara_geometry_shared_sources PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_link_libraries(antara_geometry_shared_sources PUBLIC antara::default_settings antara::event antara::graphics antara::math)
target_link_libraries(antara_geometry_shared_sources PUBLIC antara::default_settings antara::event antara::transform antara::graphics antara::math)
add_library(antara::geometry ALIAS antara_geometry_shared_sources)

if (ANTARA_BUILD_UNIT_TESTS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ namespace antara::gaming::geometry
graphics::fill_color fill_color = graphics::white,
transform::position_2d pos = math::vec2f::scalar(0.f),
graphics::outline_color out_color = graphics::transparent,
transform::properties prop = {}) noexcept;
const transform::properties& prop = {}) noexcept;
}

REFL_AUTO(type(antara::gaming::geometry::circle), field(radius));
Expand Down

0 comments on commit 3b0b4cb

Please sign in to comment.