Qt - Don't append major version number to the end of executable/library name

后端 未结 2 1345
[愿得一人]
[愿得一人] 2021-01-11 23:30

How can I stop Qt from renaming my DLL to MyDLLName{MAJOR_VERSION_NUM}.dll?

This only happens when I set the VERSION in my project file, bu

相关标签:
2条回答
  • 2021-01-12 00:24

    Use this:

    CONFIG += skip_target_version_ext
    
    0 讨论(0)
  • 2021-01-12 00:24

    See this answer (on SO) for why it is there: Why library name gets an additional 0 in its name?

    You can "not-set" the version to remove it from the generated name, but are you sure you want to do that? (It's there to avoid DLL Hell.)

    The "proper-answer" is that the LIB template is adding the version number.

    Also, note:

    • VERSION is used to define VER_MAJ and VER_MIN
    • msvc_nmake generator adds /VERSION:major.minor to link flags if !empty
    • msvc_vcproj generate adds /VERSION:major.minor to link flags and MSVCPROJ_VERSION if !empty

    You can explicitly set those yourself, or "unset" any of them.

    You can explicitly remove the version number from the target name with the TARGET_EXT variable, for example, see: http://qt-project.org/faq/answer/how_can_i_add_version_information_to_my_application

    If you want to create your own plugin to decide how to generate the target name (without the version number), you can make your own plugin as described in this answer (on SO): How to avoid having version numbers in .so file name

    0 讨论(0)
提交回复
热议问题