Results 1 to 2 of 2

Thread: QT4.3.1/MSVC2005 install problem

  1. #1
    Join Date
    Oct 2007
    Posts
    2
    Qt products
    Qt4
    Platforms
    Windows

    Default QT4.3.1/MSVC2005 install problem

    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)...

  2. #2
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,376
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Thanks
    4
    Thanked 5,019 Times in 4,795 Posts
    Wiki edits
    10

    Default Re: QT4.3.1/MSVC2005 install problem

    Issue a full nmake and nmake install.

Similar Threads

  1. QT install compatibilty problem
    By overcast in forum Installation and Deployment
    Replies: 2
    Last Post: 27th January 2007, 15:36
  2. problem aboout install qt/e 3.3.4
    By cti1912 in forum Installation and Deployment
    Replies: 0
    Last Post: 12th October 2006, 10:28
  3. Replies: 16
    Last Post: 7th March 2006, 16:57
  4. QtSolutions install problem
    By TheKedge in forum Installation and Deployment
    Replies: 4
    Last Post: 7th February 2006, 10:48
  5. Cannot Install KDEdevel packages on linux
    By wirajr in forum KDE Forum
    Replies: 12
    Last Post: 5th February 2006, 22:01

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.