Skip to content

Commit

Permalink
feat: add library dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hideakitai committed Oct 4, 2023
1 parent 39b7d02 commit cae5bcc
Show file tree
Hide file tree
Showing 81 changed files with 27 additions and 6,630 deletions.
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

0 comments on commit cae5bcc

Please sign in to comment.