3
votes
2answers
51 views
(c)make - resursive compile
Hello!
Let's assume I have directories like:
dir1
main.cpp
dir2
abc.cpp
dir3
def.cpp
dir4
ghi.cpp
jkl.cpp
And let's …
0
votes
3answers
18 views
What is the correct way to customize the install output directory for each developer in CMake?
I've been working on an old game that I created CMake files for to get rid of a mix of Makefiles and visual studio projects. Everything is working well, but I'm having a hard time …
1
vote
1answer
21 views
CMake: How to generate different shared library names depending on build type
This is my first time using CMake and I'm trying to build QJSon, a JSON parser for Qt 4.x. What I want basically is to build different output library names depending on the build c …
1
vote
1answer
17 views
Out of souce build with scons?
I have been using cmake to build my projects out of source, which is really convenient as you avoid polluting your source directory with unnecessary files.
Assuming the CMakeList …
0
votes
2answers
40 views
Finding the correct Python framework with cmake
I am using the macports version of python on a Snow Leopard computer, and using cmake to build a cross-platform extension to it. I search for the python interpreter and libraries o …
0
votes
1answer
36 views
cmake directories problem
Hi SO,
I have two cmake-related problems: first, I can't make it to find the includes in the include folder, and it doesn't find the main.cpp file unless I place it in the same di …
0
votes
3answers
115 views
CMake: how to add compiler flags to non-default compiler
Hello I want to build a project with intel compiler.
With default gcc I usually run:
cmake -DCMAKE_CXX_FLAGS=-I/some/path /path/to/project
And this works fine.
cmake -DCMAKE_ …
2
votes
1answer
27 views
CMake CTest prevent truncation of test name
Hi, I'm currently running CTest, but I have a problem whereby tests with long names. For example:
"API Part1 : Some test information w/ this input file"
get's truncated to some …
1
vote
3answers
132 views
Makefile generator for c++?
Does the following build systems cmake, jam and bjam also generate makefiles like qmake do?What utility MS visual c++ uses to generate make file?
0
votes
1answer
36 views
CMake RequireAdministrator
Hello :)
I'm trying to set the RequireAdministrator manifest flag on an executable I'm building with CMake and Visual Studio.
Any ideas on how to direct CMake to set that option? …
0
votes
1answer
185 views
CMake Visual Studio linking executable with static library
I have a very simple (currently just a main.cpp) CMake C++ project that I'm trying to build on both Mac OS X and Windows. It depends on libgsasl, which I have compiled as a static …
3
votes
1answer
73 views
cmake: How to make a script for copying Data files accompanying my program
I am trying to automate my build process with cmake.
There is currently only one issue:
Where is, in cmake's philosophy (if there is one), the best place
to put the copying of dat …
1
vote
2answers
80 views
cmake and libpthread
I'm ruinning on RHEL 5.1 and use gcc.
How I tell cmake to add -pthread to compilation and linking?
1
vote
1answer
40 views
CMake Post Build Step
Hello :)
I'm trying to setup a post-build command for CMake, which I have done using the ADD_CUSTOM_COMMAND directive as stated in the CMake documentation. What I'd like to do tho …
1
vote
11answers
311 views
Cross-platform developement?
I am looking for a solution which would allow me to code for Linux and Windows using C++.
On Windows I use Visual Studio (I tried other stuff on Windows but I work with DirectX an …
