MITK doesn't touch anything except the build directory you are specifying. So 
if there are some files in the Qt folder, I guess you probably set the build 
directory to your Qt folder. MITK also keeps its source directory clean. Just 
make sure to specify another build directory than your source directory, for 
example, clone MITK into D:\MITK and set the build directory to something like 
D:\MITK-superbuild. Beware of the path lengths. It shouldn't be much longer 
than "D:\MITK-superbuild". If you start with MITK, you can also try the MITK 
Project Template: http://mitk.org/wiki/Developer_Tutorial_(Microsoft_Windows)

Best regards,
Stefan
________________________________________
Von: Zein Salah [zeinsa...@gmail.com]
Gesendet: Freitag, 29. Januar 2016 15:57
An: Kislinskiy, Stefan
Cc: mitk-users@lists.sourceforge.net
Betreff: Re: [mitk-users] Installing/Building MITK

well, I am no more sure my build is clean or dirty. Since it is a new
one, I don't mind doing this from scratch :)
But before doing this: I noticed that mitk installed some stuff in the
Qt folders. Was this actually necessary? I would prefer to keep the Qt
installaion itself clean of external stuff? Is this possible?

thanks,
Zein


2016-01-29 15:39 GMT+01:00 Kislinskiy, Stefan <s.kislins...@dkfz-heidelberg.de>:
> Please keep the conversation on the list.
>
> Did you try a clean SUPERbuild? Usually when you start with a clean 
> superbuild and click on Configure, an error like "Qt not found" occurs. This 
> error message also says to set CMAKE_PREFIX_PATH. When you then set this 
> variable to the correct path, the error should disappear on the next 
> Configure run and various Qt library related variables should appear in the 
> CMake cache (never set them manually). Then just press Generate and give it a 
> new try to build if everything completed successfully in CMake. Setting 
> CMAKE_PREFIX_PATH might not work with a "dirty" superbuild and it does not 
> work, when you added Qt to your system path. Actually, in the latter case, 
> you don't have to set anything in CMake and it should just find Qt during the 
> Configure step.
> ________________________________________
> Von: Zein Salah [zeinsa...@gmail.com]
> Gesendet: Freitag, 29. Januar 2016 15:26
> An: Kislinskiy, Stefan
> Betreff: Re: [mitk-users] Installing/Building MITK
>
> it is actually set to this, but still generating the same error!
>
> 2016-01-29 15:15 GMT+01:00 Kislinskiy, Stefan 
> <s.kislins...@dkfz-heidelberg.de>:
>> Hi,
>>
>> set CMAKE_PREFIX_PATH to C:/Qt/5.4/msvc2013_opengl. Notice that it is *not* 
>> the bin directory. This should enable CMake to find Qt.
>>
>> Best regards,
>> Stefan
>> ________________________________________
>> Von: Zein Salah [zeinsa...@gmail.com]
>> Gesendet: Freitag, 29. Januar 2016 14:33
>> An: mitk-users@lists.sourceforge.net
>> Betreff: [mitk-users] Installing/Building MITK
>>
>> Hello,
>>
>> I am currently trying to build MITK 2015.05.2. Reading the instructions in:
>>
>> http://docs.mitk.org/nightly/BuildInstructionsPage.html
>>
>> 1. Under "Build MITK with CMake", there is a list of Options with
>> descriptions, however, which ones should be set to ON. I intesnd to
>> use the MITK workbench and most probably creat plugin for it.
>>
>> 2. During the superbuild, I had these errors in VS2013:
>>
>> 20>  Building Custom Rule C:/Develope/MITK-2015.05.2/CMakeLists.txt
>> 20>  CMake does not need to re-run because
>> C:\Develope\MITK-2015.05.2_bin\CMakeFiles\generate.stamp is
>> up-to-date.
>> 20>  Creating directories for 'MITK-Configure'
>> 20>  No download step for 'MITK-Configure'
>> 20>  No update step for 'MITK-Configure'
>> 20>  No patch step for 'MITK-Configure'
>> 20>  Performing configure step for 'MITK-Configure'
>> 20>  loading initial cache file
>> C:/Develope/MITK-2015.05.2_bin/ep/tmp/MITK-Configure-cache.cmake
>> 20>  -- Performing Test HAS_FLAG_-std=c11
>> 20>  -- Performing Test HAS_FLAG_-std=c11 - Failed
>> 20>  -- Performing Test HAS_FLAG_-std=c0x
>> 20>  -- Performing Test HAS_FLAG_-std=c0x - Failed
>> 20>  -- Generated: C:/Develope/MITK-2015.05.2_bin/MITK-build/Project.xml
>> 20>  -- Could NOT find Doxygen (missing:  DOXYGEN_EXECUTABLE)
>> 20>  -- Could NOT find Subversion (missing:  Subversion_SVN_EXECUTABLE)
>> 20>  -- Boost version: 1.56.0
>> 20>  CMake Error at CMakeLists.txt:910 (message):
>> 20>    Could not determine Qt binary directory: 0
>> 20>    C:/Qt/5.4/msvc2013_opengl/bin/bin
>> 20>
>> 20>
>> 20>  -- Configuring incomplete, errors occurred!
>> 20>  See also 
>> "C:/Develope/MITK-2015.05.2_bin/MITK-build/CMakeFiles/CMakeOutput.log".
>> 20>  See also 
>> "C:/Develope/MITK-2015.05.2_bin/MITK-build/CMakeFiles/CMakeError.log".
>> 20>C:\Program Files
>> (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(170,5):
>> error MSB6006: "cmd.exe" exited with code 1.
>> 21>------ Build started: Project: MITK-build, Configuration: Release
>> Win32 ------
>> 21>  Building Custom Rule C:/Develope/MITK-2015.05.2/CMakeLists.txt
>> 21>  CMake does not need to re-run because
>> C:\Develope\MITK-2015.05.2_bin\CMakeFiles\generate.stamp is
>> up-to-date.
>> 21>CUSTOMBUILD : error : could not find CMAKE_GENERATOR in Cache
>> ========== Build: 19 succeeded, 2 failed, 2 up-to-date, 0 skipped ==========
>>
>>
>> 3. I tried to ignore them and configure the mitk-build, as stated in
>> the cmake the MITK-2015.05.2 as source directoy and
>> MITK-2015.05.2_bin/MITK-build as binary directory. I am getting this
>> cmake error
>>
>> CMake Error at CMakeLists.txt:910 (message):
>> Could not determine Qt binary directory: 0
>> C:/Qt/5.4/msvc2013_opengl/bin/bin
>>
>> but cannot find the variable to define it. Should I add QT_BINARY_DIR
>> manually and define it?
>>
>> Much thanks,
>> Zein
>>
>> ------------------------------------------------------------------------------
>> Site24x7 APM Insight: Get Deep Visibility into Application Performance
>> APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
>> Monitor end-to-end web transactions and take corrective actions now
>> Troubleshoot faster and improve end-user experience. Signup Now!
>> http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140
>> _______________________________________________
>> mitk-users mailing list
>> mitk-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/mitk-users
------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140
_______________________________________________
mitk-users mailing list
mitk-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mitk-users

Reply via email to