Top "Cmake-gui" questions

CMake: failed to run MSBuild command: MSBuild.exe

I am trying to build FIAT using CMake GUI on windows 10. CMake Error at CMakeLists.txt:3 (project): Failed to run …

c++ msbuild cmake cmake-gui
Where is the CMake GUI for Linux?

I have CMake installed on my Ubuntu Linux. Trying to run CMake GUI in Linux. I found it works in …

ubuntu cmake cmake-gui
CMake : C and CXX compiler identification is unknown Win10 CMakeGUI

So I am trying to configure a file based on this tutorial on youtube which is very simple : https://www.…

c++ windows visual-studio-2015 cmake cmake-gui
What is the difference between "option" and "set CACHE BOOL" for a CMake variable?

Is there any difference between the following two? set(FOO true CACHE BOOL "description") option(FOO "description" ON) Documentation: set …

cmake boolean global-variables cmake-gui
CMake error while configuring "install TARGETS given no RUNTIME DESTINATION for executable target "assimp_simpletexturedogl"."

I'm trying to use CMake to configure assimp's samples but there are some error while configuring I've tried lot's of …

configuration cmake makefile assimp cmake-gui
how to use framework using Cmake?

For Macos, I'd like to link to some framework. In windows, I would like to link to some library. For …

cmake cmake-gui
How to set qt5 path with cmake find_package on Windows?

I am adding QT like this: find_package(Qt5 COMPONENTS Core Quick REQUIRED) ... target_link_libraries(${PROJECT_NAME} Qt5::Core …

qt cmake cmake-gui
How do I set CUDA architecture to compute_50 and sm_50 from cmake (3.10 version)?

My project uses CMake-GUI with visual studio. There is no gpu card installed on my system. The visual studio solution …

c++ cmake cuda cmake-gui