[Solved] How to prevent QT library project generating so, so.1 so.1.0 etc.....
- 
Hi, There's something not quite clear here, you are running windows and get so files when building a library ? What version of Qt are you using ? 
 Can you show your pro file ?
- 
There is nothing wrong with building libraries for ARMLEV7 on windows :) built for QNX, QT 5.3.1, QT Creator 3.1.2 Here is my pro file, it super simple: @# The name of the library 
 TARGET = mylibCompile a .so, not a binaryTEMPLATE = lib Libraries we needLIBS += -L"$${FRAMEWORK_BUILD_LIBS}" -lqcore QT libraries we needQT += core HEADERS += 
 mylib.hSOURCES += 
 mylib.cpp@
- 
No, indeed, there's not, but it's an information that you should have mentioned in the first place ;) IIRC, you can add CONFIG += plugin to avoid the numbering but it's not really good practice. 
- 
[quote author="SGaist" date="1408464985"] 
 IIRC, you can add CONFIG += plugin to avoid the numbering but it's not really good practice.[/quote]
 Yes, you are right, next time will add details for sure!This method sounds like a bit of workaround/hack... interesting what will be an implication of using such config option on my library? 
- 
It is a workaround because you are doing something that's not correct ;) Since you have it working now, please update the thread title prepending [solved] so other forum users may know a solution has been found :) 
- 
Like I said, you are going against linux standards for library handling "Here":http://www.ibm.com/developerworks/linux/library/l-shlibs/index.html are more informations about that 
