Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. 3rd Party Software
  4. CloudCompare Build Problem
Forum Updated to NodeBB v4.3 + New Features

CloudCompare Build Problem

Scheduled Pinned Locked Moved Unsolved 3rd Party Software
7 Posts 3 Posters 2.9k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    navya.dubey
    wrote on last edited by
    #1

    I want to build the source code of CloudCompare (an open source software) in Qt creator and this software is originally built in Qt only but there are many issues, and most important is its compatibility with cmake .
    I have explored each and every forum regarding this but I am still empty handed.
    Please help.

    K 1 Reply Last reply
    0
    • N navya.dubey

      I want to build the source code of CloudCompare (an open source software) in Qt creator and this software is originally built in Qt only but there are many issues, and most important is its compatibility with cmake .
      I have explored each and every forum regarding this but I am still empty handed.
      Please help.

      K Offline
      K Offline
      koahnig
      wrote on last edited by
      #2

      @navya.dubey

      Hi and welcome to devnet

      For getting some help, it is best to state what your actual problem is with some error output or similar.

      Also it helps to give some details on the OS, Qt and Qt creator versions you are using.

      Vote the answer(s) that helped you to solve your issue(s)

      1 Reply Last reply
      0
      • N Offline
        N Offline
        navya.dubey
        wrote on last edited by
        #3

        While building the project Error is being generated ":-1: error: No rule to make target 'all'. Stop."
        I am using Qt creator 5.8 msvc 2013 on windows 8.

        1 Reply Last reply
        0
        • VRoninV Offline
          VRoninV Offline
          VRonin
          wrote on last edited by VRonin
          #4

          Did you follow this guide ?

          an example build script for your configuration should look something like:

          
          CALL "C:/Qt/5.8/msvc2013/bin/qtenv2.bat"
          CALL "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/vcvarsall.bat"
          popd
          echo on
          mkdir build
          cd build
          cmake -G "NMake Makefiles" -DCMAKE_DEBUG_POSTFIX=d -DCMAKE_INSTALL_PREFIX=C:/CloudCompare -DCMAKE_BUILD_TYPE=DEBUG ../
          nmake
          nmake install
          cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=C:/CloudCompare -DCMAKE_BUILD_TYPE=RELEASE ../
          nmake
          

          "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
          ~Napoleon Bonaparte

          On a crusade to banish setIndexWidget() from the holy land of Qt

          1 Reply Last reply
          1
          • N Offline
            N Offline
            navya.dubey
            wrote on last edited by
            #5

            What if I want to add my own GUI along with the code of CloudCompare , any way to do that?

            1 Reply Last reply
            0
            • VRoninV Offline
              VRoninV Offline
              VRonin
              wrote on last edited by
              #6

              Yep, just browse the code, identify the parts you want to use, isolate them and move them to your program. it's mostly copy-pasting from text files so technically easy if you know what you are looking for

              "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
              ~Napoleon Bonaparte

              On a crusade to banish setIndexWidget() from the holy land of Qt

              1 Reply Last reply
              0
              • N Offline
                N Offline
                navya.dubey
                wrote on last edited by
                #7

                When I am building my project then it shows the inbuilt header files of Qt as "No such file or directory exist"
                Do I need to set path with every include statement in my project?

                1 Reply Last reply
                0

                • Login

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • Users
                • Groups
                • Search
                • Get Qt Extensions
                • Unsolved