[solved]Support multi platform issue - Windows and Ubuntu
-
-
Can you provide more info? What errors do you have?
-
Unless you use platform specific paths, you should not need to change anything. Otherwise, you can do something like (from one of my projects),
@
win32 {
LIBS += $$PWD/....\Tools\libgmp-3.dll
LIBS += $$PWD/....\Tools\libgmpxx-4.dll
} else:unix {
LIBS *= -lgmp -lgmpxx
QMAKE_LFLAGS *= -Wl,"-rpath-link $$KE_LIB_DIR"
}
@
If, you still have errors, let us know, so we can help!