-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm new with cmake,just installed it and following this article:
http://www.cs.swarthmore.edu/~adanner/tips/cmake.php
D:\Works\c\cmake\build>cmake ..
-- Building for: NMake Makefiles
CMake Warning at CMakeLists.txt:2 (project):
To use the NMake generator, cmake must be run from a shell that…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I'm attempting to use cmake on Mac OSX i've installed both a binary version and then also from source. However i continue to receive the following errors when attempting to create a Makefile.
cpc1-dumb4-2-0-cust166:build bcrowhurst$ cmake .
CMake Error: Error required internal CMake variable…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am following This Tutorial on installing MGTwitterEngine on my MAC osx 10.6.2.
I am stuck on this step:
sudo port install cmake
it gives me the following error:
dlopen(/opt/local/share/macports/Tcl/pextlib1.0/Pextlib.dylib, 10): no suitable image found. Did find:
/opt/local/share/macports/Tcl/pextlib1…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to build Marble on Windows (XP) and have been extremely unsuccessful.
Following the instructions written here. I am wanting to build it as QT only.
Configuration of the build tree fails. I am using the cmake-gui since I have never tried to compile using cmake it's possible it could be…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi
I'm building C++ app with CMake. But it uses some source files in C. Here is simplified structure:
trunk/CMakeLists.txt:
project(myapp)
set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -g -Wall")
add_subdirectory (src myapp)
trunk/src/main.cpp:
#include "smth/f.h"
int main() { f(); }
trunk/src/CMakeLists…
>>> More