Tried following this to a T...
http://wiki.qtcentre.org/index.php?t..._Visual_Studio
Got as far as "nmake"ing the 4.3.1 source, it completed without errors
Unfortunately, my -prefix directoy was only filled with the mkspec directory I copied and a \bin directory full of compiled .dlls, no lib files like I was expecting...
When it came time to do
nmake install_qmake
nmake sub-src-install_subtargets
nmake install_htmldocs
failure...
Note, I started modifying makefiles as suggested in the wiki, but it became apparent that modifying them had no change from the way they were setup...
They were in this form
COPY = copy /y
COPY_FILE = copy /y
COPY_DIR = xcopy /s /q /y /i
INSTALL_FILE = $(COPY_FILE)
INSTALL_PROGRAM = $(COPY_FILE)
INSTALL_DIR = $(COPY_DIR)
and the wiki wanted me to change them to:
COPY = copy /y
COPY_FILE = $(COPY)
COPY_DIR = xcopy /s /q /y /i
INSTALL_FILE = $(COPY)
INSTALL_PROGRAM = $(COPY)
INSTALL_DIR = $(COPY_DIR)
As you can see, there's no difference...
Anyone have any idea why "nmake" only made a collection of 18 dlls?
(again no errors)...


Reply With Quote


Bookmarks