Reputation: 19
I'm tring to compile a clone (git) project but I get an error:
:-1: error: LNK1117: syntax error in option 'VERSION:XXXX'
My platform is:
1. QT 5.5.1 MSVC2013 32bit
2. Microsoft Visual C++ Compiler 12.0 (x86)
3. Desktop Qt 5.5.1 MSVC2013 32bit
I try to clean > qmake > rebuild but it doesn't helps. (I know that the project is OK).
Any ideas?
Upvotes: 1
Views: 476
Reputation: 21
Based on MS documentation to linker command line options:
https://msdn.microsoft.com/en-us/library/h88b7dc8.aspx
The only allowed format of version specified this way is:
/VERSION:major[.minor]
Upvotes: 2