almog
almog

Reputation: 19

Error LNK1117 in QT Creator

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

Answers (1)

zxc
zxc

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

Related Questions