File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1111 steps :
1212 - uses : actions/checkout@v2
1313 - name : configure
14- run : mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release ..
14+ run : cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
1515 - name : build
1616 run : cmake --build build
1717 - name : test
2222 steps :
2323 - uses : actions/checkout@v2
2424 - name : configure
25- run : mkdir build && cd build && cmake ..
25+ run : cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
2626 - name : build
2727 run : cmake --build build
2828 - name : test
3333 steps :
3434 - uses : actions/checkout@v2
3535 - name : configure
36- run : mkdir build && cd build && cmake ..
36+ run : cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
3737 - name : build
3838 run : cmake --build build --config Debug
3939 - name : test
Original file line number Diff line number Diff line change 33#include " SMPTE_ST2094_50.hpp"
44#include < cstdarg>
55#include < cstdio>
6+ #include < cmath>
67#include < bitset>
78#include < numeric>
89
10+ #ifndef M_PI
11+ #define M_PI 3.1415926535897932384626433832
12+ #endif
13+
914/* *********************************** LOCAL LOGGING FUNCTIONS
1015 * *******************************************************************************************/
1116
You can’t perform that action at this time.
0 commit comments