Skip to content

Commit 6b5f088

Browse files
jcelerierclaude
andcommitted
fix: integer plugin VERSION for the in-tree score build
The score-plugin bootstrap bakes VERSION into generated C++; the dotted 1.0.0 compiled as an invalid float literal. The score plugin version is an integer (the standalone path ignores it), so use VERSION 1. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 3384ef3 commit 6b5f088

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ add_video_object(MyVideoGenerator my_video_generator src/Generator.hpp src/Gener
5656
add_video_object(MyVideoFilter my_video_filter src/Filter.hpp src/Filter.cpp)
5757
add_video_object(MyVideoSink my_video_sink src/Sink.hpp src/Sink.cpp)
5858

59-
avnd_addon_finalize(NAME MyVideo UUID 7ecd8671-33ca-4362-a514-1076c579c1c2 VERSION 1.0.0)
59+
avnd_addon_finalize(NAME MyVideo UUID 7ecd8671-33ca-4362-a514-1076c579c1c2 VERSION 1)
6060

6161
# Unit tests exercising the Python back-end (tests/test_python_bindings.py). Registered
6262
# only when the Python modules were actually built (pybind11 + Python dev headers found).

0 commit comments

Comments
 (0)