Tagged Questions
CMake is a cross-platform, open-source build system. It generates native makefiles and project files that can be used from the command line or integrated development environment of your choice.
33
votes
5answers
11k views
CMake tutorial
Can anyone provide link(s) to good CMake tutorial except very expensive and hard-to-get official one?
Especially interesting in using CMake for Fortran projects but will be grateful for any good ...
17
votes
4answers
17k views
Using cmake to generate visual studio C++ project files
I am working on an open source C++ project, for code that compiles on Linux and Windows. I use cmake to build the code on Linux. For ease of dev-setup and political reasons, I must stick to visual ...
17
votes
9answers
8k views
Using pre-compiled headers with CMake
I have seen a few (old) posts on the 'net about hacking together some support for pre-compiled headers in CMake. They all seem a bit all-over the place and everyone has their own way of doing it. What ...
16
votes
2answers
305 views
How can I build a C++ project with multiple interdependent subdirectories?
I have a C++ project where I've used directories as more of an organizational element -- the way one might use packages in Java or directories in PHP. Directories are not intended to be ...
16
votes
2answers
3k views
CMake: how to produce binaries “as static as possible”
I would like to have control over the type of the libraries that get found/linked with my binaries in CMake. The final goal is, to generate binaries "as static as possible" that is to link statically ...
15
votes
1answer
1k views
Linking Windows DLL files from static libraries using CMake without hand-crafting unresolved symbol names
The Situation
I'm using Visual Studio 2008 SP1 (Professional Edition, both for 32-bit and 64-bit
builds). I'm seeking a workaround to what I believe is a very
unhelpful "limitation" in ...
15
votes
4answers
18k views
How to compile a 32-bit binary on a 64-bit linux machine with gcc/cmake
Is it possible to compile a project in 32-bit with cmake and gcc on a 64-bit system? It probably is, but how do I do it?
When I tried it the "ignorant" way, without setting any parameters/flags/etc, ...
14
votes
4answers
2k views
Switching between GCC and Clang/LLVM using CMake
I have a number of projects built using CMake and I'd like to be able to easily switch between using GCC or Clang/LLVM to compile them. I believe (please correct me if I'm mistaken!) that to use Clang ...
12
votes
6answers
350 views
Fast Qt C++ compile on windows
I have a large project that uses the Qt framework and am trying to find the fastest way to compile it on my Windows install.
On my linux machine at home I use 3 year old Linux Mint setup with a dual ...
12
votes
3answers
1k views
Using Cmake with GNU Make: How can I see the exact commands?
I use Cmake with GNU Make and would like to see all commands exactly (for example how the compiler is executed, all the flags etc)
GNU make has --debug, but it does not seem to be that helpful are ...
12
votes
1answer
4k views
Best way to specify sourcefiles in Cmake
In Cmake, there are several ways to specify the sourcefiles for a target.
One is to use globbing, for example:
FILE (GLOB dir/*)
an other one is to specify each file individually, and I guess there ...
12
votes
5answers
9k views
How to copy directory from source tree to binary tree?
Copying directory from source tree to binary tree. For example: How to copy www to bin folder.
work
├─bin
└─src
├─doing
│ └─www
├─include
└─lib
Thanks.
11
votes
3answers
3k views
Autotools vs. Cmake vs. Scons
What are the differnces between Autotools, Cmake and Scons. What are the pros and cons of each of them. What do you prefer to use.
11
votes
2answers
2k views
Working with CMake and Xcode: keep project changes when CMakeLists.txt is modified
First of all, I've never developed with Xcode. I have a project that has been developed by me under a certain environment (Linux and emacs) and now some colleagues that use a different environment ...
11
votes
1answer
9k views
How to link against boost.system with cmake
I use a cmake generated makefile to compile a c++ file that depends on the boost filesystem library.
During the linking process I get the following error:
Undefined symbols:
...
11
votes
1answer
2k views
CMake & CTest : make test doesn't build tests
I'm trying CTest in CMake in order to automatically run some of my tests using make test target. The problem is CMake does not "understand" that the test I'm willing to run has to be built since it is ...
10
votes
2answers
2k views
Generate C# project using CMake
I'm trying to generate c# project within an existing c++ CMake code base on Windows. After some search I could find just two projects that built their own csharp compilers for cmake:
gdcm and kde.
I ...
10
votes
4answers
4k views
Listing header files in Visual Studio C++ project generated by cmake
I'm building a cmake based build system for our product. The problem is that Visual Studio project, generated by cmake, doesn't display header files in solution browser.
What I need to add in ...
10
votes
4answers
6k views
How to Set Path Environment Variable using CMake and Visual Studio to Run Test
I am using CMake to generate Visual Studio project files. I want to run the test executable after setting the PATH environment variable so that it is able to load the required dll. I tried as per the ...
10
votes
3answers
8k views
CMake, Xcode and Unix Makefile
I was using classic Unix Makefile generator until I found a webpage explaining CMake could produce a nice xcode project file using "cmake -G Xcode" so I ran that command in my source directory and I ...
9
votes
2answers
1k views
CMake or Waf for D project
We are looking for adequate build tool for a desktop GUI application to be written in D (using Qt toolkit), consisting of several native libraries, using 3rd party C-lib(s). It has to build on Linux ...
9
votes
5answers
2k views
configuring emacs for cmake
gcc 4.4.2
cmake 2.6
I have just started using cmake. Coming from writing my own Makefiles.
However, I have this directory structure and using out-of-source build. To separate the source files from ...
8
votes
5answers
1k views
Dynamic loaded libraries and shared global symbols
Since I observed some strange behavior of global variables in my dynamically loaded libraries, I wrote the following test.
At first we need a statically linked library: The header test.hpp
#ifndef ...
8
votes
8answers
5k views
Any real world CMake project example?
I am new to CMake, i think the best way to learn it is to see how it is used in a real world project.
I know KDE uses CMake, however, my project is much small than that. On the other hand my project ...
8
votes
5answers
1k views
How can I pass git SHA1 to compiler as definition using cmake?
In a Makefile this would be done with something like:
g++ -DGIT_SHA1="`git log -1 | head -n 1`" ...
This is very useful, because the binary knows exact commit SHA1 so it can dump it in case of ...
7
votes
2answers
137 views
What is your way to keep binary dependencies in the version control system?
I'm wondering what is the best way to keep binary dependencies in the "team friendly" way.
We have many dependencies for cross-platform application. That includes commercial library in 32/64 * ...
7
votes
2answers
193 views
cmake + xcode : error 'Build setting PRODUCT_NAME undefined'
I'm using cmake 2.8.3 to generate a C/C++ project file for xcode 3.2.5 ; the build goes generally fine, but I have to manually set the "Product Name" each time I generate the xcode project (in Project ...
7
votes
4answers
264 views
Cmake support in Eclipse
I am going crazy here. According to this, I have 3 options to use cmake in Eclipse CDT for C++. None of them works.
The first is because I use out-of-source builds and the limitations of the ...
7
votes
3answers
529 views
CMake: how best to build multiple (optional) subprojects?
Imagine an overall project with several components:
basic
io
web
app-a
app-b
app-c
Now, let's say web depends on io which depends on basic, and all those things are in one repo and have a ...
7
votes
2answers
506 views
How to integrate QT internationalization to CMake?
Greetings all,
I am trying to use QT internationalization with CMake.
I have configured my cmake file as follows :
#Internalization - this should generate core_jp.ts ?
SET(rinzo_core_TRANSLATIONS
...
7
votes
3answers
2k views
How can I use Boost.Test in a CMake based project?
My project uses CMake as its build system, and I want it to execute my Boost.Test test cases.
How can I achieve that? In Boost.Build, I could do it as follows:
import testing ;
use-project /my_lib ...
7
votes
3answers
2k views
How to link C++ program with Boost using CMake
What should my cmake file should look like for linking my program with boost library under Ubuntu?
The errors show during running make:
main.cpp:(.text+0x3b): undefined reference to ...
7
votes
5answers
477 views
Can CMake generate build scripts which do *not* use cmake?
Question: Can CMake generate build scripts that do not, in any way, use CMake? If not, how hard is it to gut a CMake generated automake script to not make any checks against CMake?
I am a big fan of ...
7
votes
1answer
588 views
CMake module for gettext support?
Is there a good, open-source, documented CMake module for gettext support?
I mean:
Extracting messages from sources
Merging messages to existing translations
Compilation of mo-files
Installation of ...
7
votes
2answers
1k views
Linking different libraries for Debug and Release builds in Cmake on windows?
So I've got a library I'm compiling and I need to link different third party things in depending on if it's the debug or release build (specifically the release or debug versions of those libraries). ...
7
votes
1answer
2k views
Is it possible to get CMake to build both a static and shared version of the same library?
Same source, all that, just want a static and shared version both. Easy to do?
7
votes
6answers
2k views
Building C++ on both Windows and Linux
I'm involved in C++ project targeted for Windows and Linux (RHEL) platforms. Till now the development was purely done on Visual Studio 2008. For Linux compilation we used 3rd party Visual Studio ...
7
votes
1answer
3k views
Call cmake from make to create Makefiles?
I am using cmake to build my project. For UNIX, I would like to type make from my project's root directory, and have cmake invoked to create the proper Makefiles (if they don't exist yet) and then ...
7
votes
11answers
2k views
Learning the source code's filename at compile time
I'm using GCC; __FILE__ returns the current source file's entire path and name. Is there a way to get just the file's name and not its whole path too (at compile time)? Is it possible to do this in a ...
6
votes
2answers
493 views
Using C++0x in Xcode 4.2 project via CMake
I'm using CMake to generate a project file for Xcode 4.2 on OSX Lion, and I'm using some of the C++0x features in LLVM like nullptr and auto. In order to use these, Xcode requires that 2 project ...
6
votes
2answers
428 views
Unit Test Output & Project Structure Advice — CMake + Google Test Framework
I'm new to CMake and I'm using the Google Test Framework. I've looked for more complex examples of combining CMake and the Google testing framework, but I've not turned up much luck. I was hoping that ...
6
votes
3answers
315 views
Is it possible to use cmake for Haskell projects?
I am planning a project written in Haskell, maybe there are some parts in C as well. For the buildsystem I decided against the common choice for Haskell programs cabal, mainly because I want to learn ...
6
votes
1answer
834 views
Simplest example of using Google C++ Testing Framework with CMake
I have a very simple C++ library (one header file, one .cpp file). I want to write unit tests for this project using the Google C++ Testing Framework.
Here is the directory structure:
~/project1
|
...
6
votes
3answers
595 views
How can Qt Creator be used as general C++ IDE (no usage of Qt library)?
I've been looking around for a nice C++ IDE, and I really like the features and performance of Qt Creator, and I plan to use it to make Qt based applications down the road. However, for right now, I ...
6
votes
1answer
3k views
Cmake target_link_libraries not linking my library
I'll begin stating that I'm almost complete dumb in Cmake matter.
I have the following CMakeLists.txt for a Kdevelop 4.1 project:
project(uart)
find_package(KDE4 REQUIRED)
include (KDE4Defaults)
...
6
votes
3answers
310 views
Developing a cross-platform game, with developers on multiple platforms
I'm about to embark on building a cross-platform game using OpenGL, and I'm looking for some advice. I have a partner who codes on Windows, but I code on a Mac. Is it sanely feasible to develop ON ...
6
votes
1answer
482 views
Check gcc minor in cmake
Is it possible to check the minor version number of GCC in cmake?
I want to do something like this:
If (GCC_MAJOR >= 4 && GCC_MINOR >= 3)
6
votes
4answers
4k views
Linking static libraries to other static libraries
I have a small piece of code that depends on many static libraries (a_1-a_n). I'd like to package up that code in a static library and make it available to other people.
My static library, lets call ...
6
votes
5answers
967 views
What is proper naming convention for MSVC dlls, static libraries and import libraries
What is standard or "most-popular" naming convention for MSVC library builds.
For example, for following platforms library foo has these conventions:
Linux/gcc:
shared: libfoo.so
import: ---
...
6
votes
2answers
3k 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?