Questions tagged [cmake-gui]

cmake-gui is CMake's bundled GUI wrapper for its command line interface. One can use this program for configure a CMake project and edit settings of such configuration. Use this tag for questions specifically about usage of the cmake-gui program.

From the reference documentation:

The cmake-gui executable is the CMake GUI. Project configuration settings may be specified interactively. Brief instructions are provided at the bottom of the window when the program is running.

Use this tag for questions specifically about usage of the cmake-gui program and not for questions about usage of CMake in general.

261 questions
0
votes
0 answers

CMAKE - Finding Libraries

How do you get CMAKE to find libraries without editing the CMAKE script? I've got OpenSceneGraph 3.2 distribution and it cannot find ZLIB, JPEG, PNG, TIFF, several others. I have each API built on disk. I have been unable to discern how to get CMAKE…
pleopard
  • 11
  • 2
0
votes
1 answer

Why my codelite execute 'make -j 0'

I'm using cmake-GUI on windows, generating for codelite, to build a simple "hello world" project (https://github.com/jameskbride/cmake-hello-world). I'm trying to use cygwin compilers but when I run the build command, I got the following…
0
votes
1 answer

C++ error: expected primary-expression before ‘;’ token using Cmake

I used Cmake to define folder paths. I have Config.in.h file and where #cmakedefine are declared as #cmakedefine CAFFE_MODEL_PATH #cmakedefine CAFFE_MODEL_PATH #cmakedefine CAFFE_TRAIN_MODEL #cmakedefine MEAN_FILE #cmakedefine LABEL_FILE In my…
batuman
  • 7,066
  • 26
  • 107
  • 229
0
votes
1 answer

Visual Studio compilers not visible by cmake

I'm trying to build a program in c++ using mysql.h So i read that compiling with cmake is necessary. But as it seems cmake cant find visual's studio compilers even though I opened it through Developers command prompt. This is the error that…
Theo.Fanis
  • 444
  • 6
  • 15
0
votes
2 answers

MSBuild.exe has stopped cmake error

I was able to compile zlib yesterday with CMake but the only possible change was installing Windows 10 SDK 10.0.14393.33 and now that I configure it with the same choice (Visual Studio 14 2015 win64) I get the following error: Any idea what could…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
0
votes
1 answer

CMake Error at IlmImf/cmake_install.cmake:84 (file): file INSTALL cannot find IlmImf.dll"

I get the error here 1>------ Build started: Project: IlmImf, Configuration: Debug x64 ------ 1> Building Custom Rule D:/playing-for-data/renderdoc/renderdoc/3rdparty/openexr/OpenEXR/IlmImf/CMakeLists.txt 1> CMake does not need to re-run because…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
0
votes
2 answers

could not find the following boost libraries

I am not able to figure out why am I getting this error. CMake Error at C:/Program Files/CMake/share/cmake-3.6/Modules/FindBoost.cmake:1753 (message): Unable to find the requested Boost libraries. Boost version: 1.48.0 Boost include path:…
Gopi Shankar
  • 67
  • 1
  • 10
0
votes
0 answers

No CMAKE_C_COMPILER could be found even after trying all generators

I am using Visual Studio 2015 Basic. I tried all the 3 generators(Visual Studio 14 2015, Visual Studio 14 2015 Win64, and Visual Studio 14 2015 ARM ). still I am getting the this error. No CMAKE_C_COMPILER could be found. No CMAKE_CXX_COMPILER…
Gopi Shankar
  • 67
  • 1
  • 10
0
votes
1 answer

How to check the Software version invoked by cmake

I am invoking a software from CMAKE to generate required files for build.Is it possible to print the version of software invoked in the build window..?
Santz
  • 7
  • 4
0
votes
1 answer

Cannot build LLVM on Windows 10 using Visual Studio 2015

I'm trying to install LLVM on Windows 10 using Visual Studio, using the guide http://llvm.org/docs/GettingStartedVS.html, but I'm getting errors: Here is my view in CMake GUI, where I've directed it to use the C++ compiler C:/Program Files…
Shuzheng
  • 11,288
  • 20
  • 88
  • 186
0
votes
1 answer

issue when building module using cmake

i am trying to build box2D using cmake. When i click configure (and selecting my version of visual studio) cmake starts working but it finnishes with the error message: You have called ADD_LIBRARY for library glfw without any source files. This…
Bonbin
  • 305
  • 1
  • 6
  • 19
0
votes
1 answer

how to install cmake latest version in ubuntu with out net connection

I want to install cmake in Ubuntu 14.04 in offline. Could you please tell me.How to download from internet (provide link) and install cmake in Ubuntu 14.04. I need cmake for run cyptominisat programmes
0
votes
1 answer

Linking to a .so library in cmake

I have a libmosquittopp.so in /usr/lib folder. The mosquittopp.h is inside /usr/include folder. I like to link to my project to that lib. So my CMakeLists.txt file is cmake_minimum_required(VERSION 2.6) PROJECT(MosquittoTest) # The version…
batuman
  • 7,066
  • 26
  • 107
  • 229
0
votes
1 answer

ITK installation error using Cmake

I am trying to install/configure ITK using Cmake, but unable to do it as there are errors which I am unable to resolve. Could some one please help? Also why is the location set to C:/Program Files (x86)/ITK? Please help!
Adam Merckx
  • 1,122
  • 1
  • 14
  • 31
0
votes
1 answer

Configuring PoDoFo in CMake

The PoDoFo requirement Page says that zlib and freetype2 are mandotory libraries and rest are optional. I have already built the zlib and freetype2 and provided their path to CMake GUI. When I try to Configure PoDoFo in CMake, I get a whole bunch of…
skm
  • 5,015
  • 8
  • 43
  • 104