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

feat: add library dependencies #15

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,9 @@ jobs:
- examples/transition_callback
libraries: |
- source-path: ./
- name: ArxContainer
- name: ArxSmartPtr
- name: ArxTypeTraits
- name: Easing
- name: PollingTimer
verbose: true
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,13 +287,15 @@ Sequence<T>& hold(const double in);
Sequence<T>& offset(const double ms);
```

## Dependent Libraries

- [Easing](https://github.com/hideakitai/Easing)
- [PollingTimer](https://github.com/hideakitai/PollingTimer)
- [ArxTypeTraits](https://github.com/hideakitai/ArxTypeTraits)
- [ArxContainer](https://github.com/hideakitai/ArxContainer)
- [ArxSmartPtr](https://github.com/hideakitai/ArxSmartPtr)
## Embedded Libraries

- [Easing v0.1.0](https://github.com/hideakitai/Easing)
- [PollingTimer v0.4.3](https://github.com/hideakitai/PollingTimer)
- [ArxTypeTraits v0.2.3](https://github.com/hideakitai/ArxTypeTraits)
- [ArxContainer v0.4.0](https://github.com/hideakitai/ArxContainer)
- [ArxSmartPtr v0.2.3](https://github.com/hideakitai/ArxSmartPtr)
- [TeensyDirtySTLErrorSolution v0.1.0](https://github.com/hideakitai/TeensyDirtySTLErrorSolution)

## License
Expand Down
2 changes: 1 addition & 1 deletion Tween/Timeline.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "Types.h"
#include "Sequence.h"
#include "util/PollingTimer/FrameRateCounter.h"
#include <FrameRateCounter.h>

namespace ht {
namespace tween {
Expand Down
2 changes: 1 addition & 1 deletion Tween/Transition.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define HT_TWEEN_TRANSITION_H

#include "Types.h"
#include "util/Easing/Easing.h"
#include <Easing.h>

struct CRGB;
struct CHSV;
Expand Down
6 changes: 3 additions & 3 deletions Tween/Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#elif defined(OF_VERSION_MAJOR)
#include "ofMain.h"
#endif
#include "util/ArxTypeTraits/ArxTypeTraits.h"
#include "util/ArxSmartPtr/ArxSmartPtr.h"
#include "util/ArxContainer/ArxContainer.h"
#include <ArxTypeTraits.h>
#include <ArxSmartPtr.h>
#include <ArxContainer.h>

namespace ht {
namespace tween {
Expand Down
Loading
Loading