Re: [CMake] Deploy Qt based App to WindowsStore using CMake

2016-03-03 Thread Nikita Barawade
mote device, please follow all instructions by Visual Studio to set it up correctly. If you are targeting an emulator for Windows Phone ... Regards, ​Nikita​ From: Roman Wüger <roman.wue...@gmx.at> Sent: 04 March 2016 01:39 AM To: Nikita Barawade

[CMake] Build for x86 architecture through CMake

2016-02-11 Thread Nikita Barawade
Hi, My project needs visual studio solution for x86 architecture. I am using windows 10 with VS2015. When tried to build using CMake command , there is only option for selecting Win64 or ARM but no option for x86. After searching a bit came to know that to build for x86 arch ,I need to use

Re: [CMake] Multiple Visual Studio Solutions through same master CMakeLists.txt

2016-01-28 Thread Nikita Barawade
Hi, Thanks Nils ! Regards, Nikita From: Nils Gladitz <nilsglad...@gmail.com> Sent: 28 January 2016 05:27 PM To: Nikita Barawade; cmake@cmake.org Subject: Re: [CMake] Multiple Visual Studio Solutions through same master CMakeLists.txt On 01/28/2016

[CMake] Multiple Visual Studio Solutions through same master CMakeLists.txt

2016-01-28 Thread Nikita Barawade
Hi All , It is possible to same master CMakeList to generate multiple visual studio solution files ? here is my master CMakeList : cmake_minimum_required (VERSION 2.8.11) project (Myproject_all) set_property (GLOBAL PROPERTY USE_FOLDERS ON) # Set compiler flags and options. # enable the

Re: [CMake] Alternative to CMAKE_PREFIX_PATH

2016-01-20 Thread Nikita Barawade
com> Sent: 18 January 2016 08:16 PM To: Nikita Barawade Cc: cmake@cmake.org Subject: Re: [CMake] Alternative to CMAKE_PREFIX_PATH A better alternative would be to use the command line switch -DCMAKE_PREFIX_PATH= or similarly via CMake-GUI. Or you could also use the env var. See https://cma

[CMake] Alternative to CMAKE_PREFIX_PATH

2016-01-18 Thread Nikita Barawade
Hi, My project needs Qt5 . Adding find_package (Qt5Widgets) to CMakeLists.txt could not find Qt . So I added, set (CMAKE_PREFIX_PATH "< Qt installation path>") It is working fine now. But is there any alternative to find qt5 package without hardcoding CMAKE_PREFIX_PATH ? Regards,

Re: [CMake] error while loading shared libraries: libLLAPI.so: cannot open shared object file: No such file or directory

2015-12-11 Thread Nikita Barawade
t then linker will search the libraries in >LD_LIBRARY_PATH ,so setting only RPATH should work . Please correct if I am wrong . Please share your inputs. Regards, Nikita From: J Decker <d3c...@gmail.com> Sent: 10 December 2015 10:10 PM To: Nik

[CMake] error while loading shared libraries: libLLAPI.so: cannot open shared object file: No such file or directory

2015-12-10 Thread Nikita Barawade
Hi, getting following error when trying to run LLAPI_TestApp ./LLAPI_TestApp: error while loading shared libraries: libLLAPI.so: cannot open shared object file: No such file or directory Both LLAPI_TestApp and libLLAPI.so are present in same directory Bin/Wind. CMakeLists.txt for

Re: [CMake] Cmake : undefined reference to `udev_device_get_devnode'

2015-11-22 Thread Nikita Barawade
bdbus-1.so.3 => /lib/x86_64-linux-gnu/libdbus-1.so.3 (0x7fb8d0ecc000) /lib64/ld-linux-x86-64.so.2 (0x7fb8d2b6f000) libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x7fb8d0cae000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fb8d09a8000) Reg

[CMake] Cmake : undefined reference to `udev_device_get_devnode'

2015-11-20 Thread Nikita Barawade
Dear All, I am building an application using cmake with external shared library libLLAPI.so on Ububtu . I am getting following error: make -f Source/CMakeFiles/app.dir/build.make Source/CMakeFiles/app.dir/build make[2]: Entering directory

Re: [CMake] Cmake not working for VS13

2015-11-05 Thread Nikita Barawade
Hi, Thanks for reply . I am using visual studio 13. I managed to get it done , I had to repair Visual studio . Regards, Nikita Barawade Engineer | PES From: David Cole <dlrd...@aol.com> Sent: 05 November 2015 06:00 PM To: Nikita Barawade Cc:

[CMake] Cmake not working for VS13

2015-11-04 Thread Nikita Barawade
Hi, New to cmake utility, I am trying to build sample program given here https://cognitivewaves.wordpress.com/cmake-and-visual-studio/ with VS13 on windows 7. Getting following error: CMake Error at CMakeLists.txt:5 (project): No CMAKE_C_COMPILER could be found. CMake Error at