Skip to content

Commit d8a0fa5

Browse files
committed
added header
1 parent 1dd9a17 commit d8a0fa5

File tree

11 files changed

+11
-0
lines changed

11 files changed

+11
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ third-party/include/cargs.h
1313
third-party/include/*.hpp
1414
third-party/include/libserialport.h
1515
third-party/include/pupdmd.h
16+
third-party/include/SceneGenerator.h
1617
third-party/include/serum.h
1718
third-party/include/serum-decode.h
1819
third-party/include/ZeDMD.h

platforms/android/arm64-v8a/external.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ cmake \
6464
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
6565
-B build
6666
cmake --build build -- -j${NUM_PROCS}
67+
cp src/SceneGenerator.h ../../third-party/include/
6768
cp src/serum.h ../../third-party/include/
6869
cp src/serum-decode.h ../../third-party/include/
6970
cp build/libserum.so ../../third-party/runtime-libs/android/arm64-v8a/

platforms/ios-simulator/arm64/external.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ cmake \
5858
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
5959
-B build
6060
cmake --build build -- -j${NUM_PROCS}
61+
cp src/SceneGenerator.h ../../third-party/include/
6162
cp src/serum.h ../../third-party/include/
6263
cp src/serum-decode.h ../../third-party/include/
6364
cp build/libserum.a ../../third-party/build-libs/ios-simulator/arm64/

platforms/ios/arm64/external.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ cmake \
5858
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
5959
-B build
6060
cmake --build build -- -j${NUM_PROCS}
61+
cp src/SceneGenerator.h ../../third-party/include/
6162
cp src/serum.h ../../third-party/include/
6263
cp src/serum-decode.h ../../third-party/include/
6364
cp build/libserum.a ../../third-party/build-libs/ios/arm64/

platforms/linux/aarch64/external.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ cmake \
6262
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
6363
-B build
6464
cmake --build build -- -j${NUM_PROCS}
65+
cp src/SceneGenerator.h ../../third-party/include/
6566
cp src/serum.h ../../third-party/include/
6667
cp src/serum-decode.h ../../third-party/include/
6768
cp -a build/libserum.{so,so.*} ../../third-party/runtime-libs/linux/aarch64/

platforms/linux/x64/external.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ cmake \
6262
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
6363
-B build
6464
cmake --build build -- -j${NUM_PROCS}
65+
cp src/SceneGenerator.h ../../third-party/include/
6566
cp src/serum.h ../../third-party/include/
6667
cp src/serum-decode.h ../../third-party/include/
6768
cp -a build/libserum.{so,so.*} ../../third-party/runtime-libs/linux/x64/

platforms/macos/arm64/external.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ cmake \
6262
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
6363
-B build
6464
cmake --build build -- -j${NUM_PROCS}
65+
cp src/SceneGenerator.h ../../third-party/include/
6566
cp src/serum.h ../../third-party/include/
6667
cp src/serum-decode.h ../../third-party/include/
6768
cp -a build/libserum.{dylib,*.dylib} ../../third-party/runtime-libs/macos/arm64/

platforms/macos/x64/external.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ cmake \
6262
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
6363
-B build
6464
cmake --build build -- -j${NUM_PROCS}
65+
cp src/SceneGenerator.h ../../third-party/include/
6566
cp src/serum.h ../../third-party/include/
6667
cp src/serum-decode.h ../../third-party/include/
6768
cp -a build/libserum.{dylib,*.dylib} ../../third-party/runtime-libs/macos/x64/

platforms/tvos/arm64/external.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ cmake \
5858
-DCMAKE_BUILD_TYPE=${BUILD_TYPE} \
5959
-B build
6060
cmake --build build -- -j${NUM_PROCS}
61+
cp src/SceneGenerator.h ../../third-party/include/
6162
cp src/serum.h ../../third-party/include/
6263
cp src/serum-decode.h ../../third-party/include/
6364
cp build/libserum.a ../../third-party/build-libs/tvos/arm64/

platforms/win/x64/external.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ cmake \
6464
-DBUILD_STATIC=OFF \
6565
-B build
6666
cmake --build build --config ${BUILD_TYPE}
67+
cp src/SceneGenerator.h ../../third-party/include/
6768
cp src/serum.h ../../third-party/include/
6869
cp src/serum-decode.h ../../third-party/include/
6970
cp build/${BUILD_TYPE}/serum64.lib ../../third-party/build-libs/win/x64/

0 commit comments

Comments
 (0)