-
Notifications
You must be signed in to change notification settings - Fork 50
CMake: remove patch version in the avtranscoder library name on Windows #288
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
CMake: remove patch version in the avtranscoder library name on Windows #288
Conversation
* avtranscoder-0.11.0 becomes avtranscoder-0.11 * avtranscoder-java-0.11.0 becomes avtranscoder-java-0.11
71385bc
to
c6744c1
Compare
1 similar comment
2 similar comments
@@ -154,7 +154,7 @@ if(SWIG_FOUND) | |||
# Create 'avtranscoder-java' shared lib | |||
swig_add_module(avtranscoder-java java ${AVTRANSCODER_BINDING_FILE}) | |||
if(WIN32) | |||
set_target_properties(avtranscoder-java PROPERTIES OUTPUT_NAME "avtranscoder-java-${AVTRANSCODER_VERSION}") | |||
set_target_properties(avtranscoder-java PROPERTIES OUTPUT_NAME "avtranscoder-java-${AVTRANSCODER_VERSION_MAJOR}-${AVTRANSCODER_VERSION_MINOR}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The generated JAR name should be changed too, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes you are right!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Arg it does not seems to be a good idea, since widely used Java tools, like Maven, expects Jar named nameJar-fullVersion.jar. We need to take some time to discuss about this possible update...
Goal: avtranscoder is a based library for lot of other intern projects. We should be able to patch avtranscoder without recompile all our other projects based on it.