Skip to content

Commit

Permalink
More tests coverage (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
kunitoki authored Apr 8, 2024
1 parent 97d1357 commit 54cd4c2
Show file tree
Hide file tree
Showing 56 changed files with 6,433 additions and 185 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ set_target_properties (${PROJECT_NAME} PROPERTIES PREFIX "")

if (APPLE)
set_target_properties (${PROJECT_NAME} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
set_target_properties (${PROJECT_NAME} PROPERTIES SUFFIX ".so")
target_link_options (${PROJECT_NAME} PRIVATE "-Wl,-weak_reference_mismatches,weak")
elseif (WIN32)
target_compile_definitions (${PROJECT_NAME} PUBLIC $<$<CONFIG:Debug>:Py_DEBUG>)
Expand Down
7 changes: 6 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ Supported Modules
- Planned
* - juce_core
- ✅
- 44.82%
- 47.7%
- Ready
* - juce_cryptography
- ⛔️
Expand Down Expand Up @@ -329,6 +329,11 @@ Some images of JUCE tutorials and other small apps ported to *popsicle*.
.. image:: images/emojis_component.png
:target: examples/emojis_font_component.py

- Wgpu Triangle Rendering Embedded Component

.. image:: images/wgpu_triangle.png
:target: examples/webgpu/


-------------
Code Coverage
Expand Down
2 changes: 1 addition & 1 deletion examples/emojis_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,4 +172,4 @@ def resized(self):


if __name__ == "__main__":
START_JUCE_COMPONENT(ExampleComponent, name="Emoji Example")
START_JUCE_COMPONENT(ExampleComponent, name="Emoji Example")
2 changes: 1 addition & 1 deletion examples/emojis_font_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@ def resized(self):


if __name__ == "__main__":
START_JUCE_COMPONENT(ExampleComponent, name="Emoji Example")
START_JUCE_COMPONENT(ExampleComponent, name="Emoji Example")
Empty file added examples/webgpu/__init__.py
Empty file.
Loading

0 comments on commit 54cd4c2

Please sign in to comment.