Tagged Questions
1
vote
1answer
60 views
In CMake, is it possible to build a dependency imported from a build tree?
I am trying to use the CMake feature for exporting/importing targets from a build tree (see this wiki page). I have this dependency library:
add_library(dependency SHARED dependency.cpp)
...
2
votes
1answer
260 views
CMAKE_TOOLCHAIN_FILE was not used by the project
Cmake gives this warning when building one third-party script:
CMake Warning:
Manually-specified variables were not used by the project:
CMAKE_TOOLCHAIN_FILE
Is there any common advices what ...
0
votes
0answers
174 views
why i failed to build mysql using cmake on windows?
mysql is a nice piece of code which worth study:)
now i am about to build mysql on windows 7 x64 system using vs 2010.
in fact, i failed to build mysql on windows both using cmake and visual studio ...
0
votes
1answer
273 views
Cmake script problems find_path
I have put these two lines in my Findglm.cmake file to point to the headers for this header library.
find_path(glm_INCLUDE_DIR NAMES glm.hpp matrix_transform.hpp type_ptr.hpp PATHS
...
2
votes
2answers
2k views
How to detect target architecture using CMake?
I've done a lot of research and been unable to find an answer to this... how can I reliably find the target architecture I'm compiling for, using CMake? Basically, the equivalent to QMAKE_TARGET.arch ...
2
votes
1answer
475 views
How to work around CMake + XCode 4 paths dependencies?
I have projects structured like so:
Libs/
Apps1/
Apps2/
In each folder is a CMakeLists.txt. I would like to generate a project file for each of the folders, and each AppsN references Libs. My ...
2
votes
2answers
577 views
Setting up build process for dependent projects and multiple developers
I'm fairly new to automating build processes and continuous integration, and am working on setting up a build process / server for a small team of developers. We are using SVN, CMake, and Jenkins ...
1
vote
1answer
228 views
Getting link errors with CMake
I'm getting multiple definition link errors after conditionally compiling platform-specific code.
My project is laid out like this:
/
|__+ include/
| |__+ native/
| | |__ impl.h
| |
| |__ ...
8
votes
1answer
2k views
Have CMake recursively scan folders?
How do I set up CMake to recursively scan a given directory and determine the list of source files?
My project is a shared library. I have a folder structure similar to this:
/
src/ # ...
0
votes
2answers
325 views
CMAKE for modular c++ framework
I'm refactoring a large platform independent c++ framework so that it's libraries and execuables no longer have to be in the same directory (or even repository) and it is proving quite challenging. ...
4
votes
1answer
2k views
cmake: How to add a add_custom_command that just executes a shellscript?
When I use the classic gnu Make I put in post build actions like flash the device (if it is a embedded device) and other similiar actions. The actual flashing is usually hidden behind a little sctipt ...
3
votes
4answers
372 views
How do I tell cmake where to output its build data?
How do I tell cmake where it should output its build data?
Let's say I have a dir with the source code called src/,
and then since cmake outputs a lot of files I would like him to put all of that in ...
9
votes
2answers
2k views
Tutorial for converting Autotools to CMake
So there seems to be a lot of writing on the subject of Autotools vs. CMake, but for the life of me I can't seem to find a good tutorial on how to convert a project from Autotools to CMake. Does ...
4
votes
1answer
3k views
CMake: How to link against a static 3rd party lib?
What I have: my code (simple main.cpp), headers of the 3rd party lib (EnvVar TPLIB_INCLUDE), binary lib (several .a files in TPLIB_BINARY_PATH) and the following CMakeLists.txt:
# current source ...
1
vote
1answer
87 views
Generate a Makefile from source and executable?
I've got a large code base that builds fine using a old custom build system cobbled together using bunch of bash scripts and simple Makefiles recursively combined.
How can I go about recreating the ...
1
vote
1answer
3k views
CMAKE: performing a file copy AFTER a custom command has run
I have a build script fragment that looks as follows:
foreach(...)
...
add_custom_command( OUTPUT ${fn_c} ${fn_s} ${fn_p_c} {fn_p_h}
COMMAND ${PROTOBUF_PROTOC_EXECUTABLE} ...
3
votes
1answer
2k views
How to setup Qt Creator to work with CMake on Mac with Qt 4.7 SDK?
I'm using Qt Creator 2.2.1 under MacOS X 10.6.8, standard MacOS X install for CMake 2.8.5 and Qt SDK version 1.1.2 released on June 21st (Qt 4.7.3 libraries).
My CMakeLists.txt fails in the ...
0
votes
1answer
168 views
Update option (of Make file) in CMake
I have a big project that uses CMake to create Make file. Sometimes, I add one small project and then have to run the CMake script for whole project (like delete previous, and create newer CMake with ...
3
votes
2answers
585 views
CMake error with ExternalProject
Two days ago, I added an External Project to compile a project using autotools. It was perfectly working until today...
I have a weird error:
CMake Error at
...
5
votes
1answer
1k views
Building a library using autotools from cmake
This is my first try with cmake and I would like to have, if possible, some feedbacks about what I did since some problems remain.
In the CMakeLists.txt of the library folder, I created two makefile ...
8
votes
3answers
616 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 ...
7
votes
1answer
2k views
Autotools vs CMake
I have been looking for pros & cons of Autotools and CMake. But I would like to know opinions from people having used one (or both) of these tools for projects.
I used Autotools very basically a ...
1
vote
3answers
944 views
Parallel Make Output
When running a CMake generated Makefile with multiple processes (make -jN), the output often gets messed up like this:
[ 8%] [ 8%] [ 9%] Building CXX object App/CMakeFiles/App.dir/src/File1.cpp.o
...
2
votes
1answer
816 views
Compile time architecture detection in cmake
So I have a library I'm working on that has, or will have, optimised assembly per architecture of the cpu. We're talking about optimising for nehalem, or core2, or k8 or whatever.
Anyway, I've been ...
1
vote
2answers
1k views
How do I produce only an object file (*.o) from a CMake build target?
I'm trying to build an object file using CMake, but I can't seem to get CMake to build something other than a complete executable. I'm basically looking for the result of the following compilation ...
5
votes
2answers
2k views
What are the dusty corners a newcomer to CMake will want to know?
I've done a lot of projects and a lot of different build systems and CI tools. Most recently, I've been exposed to the occasionally challenging task of adding to an autotools based environment for a ...
0
votes
2answers
1k views
CMAKE: Conditionally Initializing a Cache Variable dependant on the Generator Type
I currently have a basic Cmake file that sets certain library directories. I would like to conditionally intitalise based on the target generator -- in my case the generator determines which base ...
13
votes
3answers
22k views
Running CMake on Windows
I am currently trying to get CMake to run on my Windows 7 (64-bit) system. I want to compile TagLib for later use with a Qt application I am working on. I would like to compile it with MinGW (not ...
1
vote
1answer
292 views
What is the in-place/Out-of-place builds
As in the title the questions is what is the difference between (in-place/Out-of-place builds)?
12
votes
2answers
2k 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 ...
10
votes
1answer
1k views
Overriding a default option(…) value in CMake from a parent CMakeLists.txt
I am trying to include several third-party libraries in my source tree with minimal changes to their build system for ease of upgrading. They all use CMake, as do I, so in my own CMakeLists.txt I can ...
1
vote
1answer
290 views
Framework for building and managing third-party libraries
I am working on a cross-platform project which uses a large number of third party libraries (currently 22 and counting, and I expect this number to increase significantly). My project is CMake-based, ...
0
votes
2answers
172 views
Does CMake has something like % substitution support from Make?
I need a chain of file processing in my build-process. Workflow can be easily specified and built around a filename, only extension changes, like file.a -> file.b -> file.c. So, it's clearly a case ...
5
votes
2answers
231 views
How to tag a scientific data processing tool to ensure repeatability
we develop a data processing tool to extract some scientific results out of a given set of raw data. In data science it is very important that you can re-obtain your results and repeat the ...
1
vote
2answers
472 views
How to change package destination folder in CPack?
I have a multiple module CMake project with a root CMakeLists.txt with multipe add_subdirectory macros.
As far as I understand the default for CPack/CMake is to create package in project root folder, ...
11
votes
5answers
841 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 ...
2
votes
1answer
248 views
eclipse & cmake cdt4: lost in translation
I have an out-of-source build setup with cmake and I am trying to generate an Eclipse project. I have one source folder and a seperate build folder for eclipse, the two folders are siblings.
When I ...
6
votes
3answers
2k views
cmake command syntax question
I require the syntax of a CMAKE macro that generates .cc and .h files from a tool like lex/yacc.
Could someone please show me the syntax for the following contrived example:
say I have a file y.cc ...
5
votes
2answers
1k views
cmake: Working with multiple output configurations
I'm busy porting my build process from msbuild to cmake, to better be able to deal with the gcc toolchain (which generates much faster code for some of the numeric stuff I'm doing).
Now, I'd like ...
1
vote
1answer
734 views
CMake and including other makefiles
Lets say I have a CMakeLists.txt and I want to call another include another makefile in that file (similar to the #include syntax in C), how would I accomplish this?
7
votes
3answers
12k views
How to define compiler flags at compile time using CMake?
add_definitions adds definition that is fixed at time when cmake (not make) is executed.
How to define them when make (not cmake) is executed?
The value of the definition will be an output of a custom ...
4
votes
7answers
1k views
C++ Buildsystem with ability to compile dependencies beforehand
I'm in the middle of setting up an build environment for a c++ game project. Our main requirement is the ability to build not just our game code, but also its dependencies (Ogre3D, Cegui, boost, ...
15
votes
4answers
16k views
How to run a command at compile with in Makefile generated by CMake?
I would like to pass some options to a compiler.
The option would have to be calculated at compile time - everytime when 'make' is invoked, not when 'cmake', so execute_process command does not cut ...
6
votes
2answers
6k views
CMake variable or property to discern betwen debug and release builds
I want to set a CMake variable differently for debug and release builds. I have tried to use CMAKE_CFG_INTDIR like this:
IF(${CMAKE_CFG_INTDIR} STREQUAL "Debug")
SET(TESTRUNNER ...
3
votes
1answer
2k views
How to set an Xcode attribute in CMake for a specific configuration?
I'm using CMake to generate an Xcode project, and I use
set_target_properties(myproj PROPERTIES XCODE_ATTRIBUTE_WHATEVER "some value")
to explicitly set a build setting. I'd like to only set it for ...
1
vote
1answer
1k views
CMake and CTest question
In the test that I want to run using CTest I should be adding the test that I want to run, with the following command:
add_test(TestName ExeName)
problem is what if I want to supply an argument to ...
0
votes
1answer
379 views
Prevent presenting of variable in cmake GUI
I want to limit hard-coded CMAKE_CONFIGURATION_TYPES to RELEASE and DEBUG only. If I execute cmake GUI on Windows to create Visual Studio build, CMAKE_CONFIGURATION_TYPES is present along with other ...
4
votes
6answers
1k views
Build system choice?
I am currently setting up a new software project and I want to have an automated build system. The project has a fairly complex involving C, C#. It must also generate automatic bindings (Python, PHP, ...
8
votes
6answers
4k 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 ...
5
votes
6answers
4k views
cmake RUNTIME_OUTPUT_DIRECTORY on Windows
I'm using cmake for managing my cross-platform builds, and I have everything worked out except for this problem. I set RUNTIME_OUTPUT_DIRECTORY to a bin/ directory where I have data files stored. On ...
