Advanced CMake Features
There are several advanced features of the CMake build system that may be of use on projects as they get larger. This is far from a comprehensive list, and information related to unlisted tasks may be found on official CMake documentation.
Background
This page is written with the assumption that the project being worked on has been created using the oe_init_project script or using the EMAC New C/C++ Project in Qt Creator. This page will explain the following CMake tasks:
- Adding a version number
- Adding external library files
- Adding C/C++ sources as libraries
- Cross platform building
Advanced CMake Features
Adding a Version Number and Configured Header File
It is generally a good practice to put a version number in a project, but maintaining several variables containing the version number can be time consuming. It is possible to provide the executable and project with a version number through CMake. While you can do this exclusively in the source code, doing it in the CMakeLists file provides more flexibility. To add a version number we modify the CMakeLists file as follows:
# The version number.
set (Example_VERSION_MAJOR 1)
set (Example_VERSION_MINOR 0)
# configure a header file to pass some of the CMake settings
# to the source code
configure_file (
"${PROJECT_SOURCE_DIR}/ExampleConfig.h.in"
"${PROJECT_BINARY_DIR}/ExampleConfig.h" )
# add the binary tree to the search path for include files
# so that we will find ExampleConfig.h
include_directories("${PROJECT_BINARY_DIR}")
# add the executable
add_executable(example main.c)
Since the configured file will be written into the binary tree we must add that directory to the list of paths to search for include files. We then create an ExampleConfig.h.in
file in the source tree with the following contents:
// the configured options and settings for Tutorial
#define Example_VERSION_MAJOR @Example_VERSION_MAJOR@
#define Example_VERSION_MINOR @Example_VERSION_MINOR@
When CMake configures this header file the values for @Example_VERSION_MAJOR@
and @Example_VERSION_MINOR@
will be replaced by the values from the CMakeLists file. Next we modify main.c to include the configured header file and to make use of the version numbers. The resulting source code is listed below.
// A simple program that computes the square root of a number
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "ExampleConfig.h"
int main (int argc, char *argv[]) {
if (argc < 2) {
fprintf(stdout,"%s Version %d.%d\n", argv[0], Example_VERSION_MAJOR, Example_VERSION_MINOR);
fprintf(stdout,"Usage: %s number\n",argv[0]);
return 1;
}
double inputValue = atof(argv[1]);
double outputValue = sqrt(inputValue);
fprintf(stdout,"The square root of %g is %g\n",inputValue, outputValue);
return 0;
}
The main points of note are the inclusion of the ExampleConfig.h
header file and printing out a version number as part of the usage message.
Adding External Library Files
A library is a collection of precompiled object files which can be linked into programs. The most common use of libraries is to provide system functions, such as the image resize function, MagickResizeImage
, found in the ImageMagick library. The linker needs to know where to find these objects; CMake can accomplish this with the INCLUDE_DIRECTORIES
and TARGET_LINK_LIBRARIES
functions.
To add an external library to the CMake project, more changes will need to be made to the CMakeLists.txt
file. Please refer to the code sample below. In this example, the ImageMagick library will be linked into the project.
- The library directory must be included using the
INCLUDE_DIRECTORIES()
function. This function must be before theADD_EXECUTABLE()
function. - Use the
TARGET_LINK_LIBRARIES()
function to link the desired library to the target binary. This function must be after theADD_EXECUTABLE()
function.
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR} "/usr/include/ImageMagick")
ADD_EXECUTABLE(example main.cpp) # This should be here by default
TARGET_LINK_LIBRARIES(example MagickWand)
Boost Library Support
To use the Boost libraries with CMake and EMAC OE, change the CMakeLists.txt
file to reflect the following example code:
### Boost Library Support
SET(Boost_USE_STATIC_LIBS OFF)
SET(Boost_USE_MULTITHREADED ON)
SET(Boost_USE_STATIC_RUNTIME OFF)
FIND_PACKAGE(Boost 1.40 COMPONENTS iostreams REQUIRED)
# Here is how to include some other popular Boost packages
#FIND_PACKAGE(Boost 1.40 COMPONENTS regex iostreams filesystem system REQUIRED)
if(Boost_FOUND)
MESSAGE(STATUS "Boost libs found")
INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS})
# AUX_SOURCE_DIRECTORY(. SRC_LIST)# (OPTIONAL) This will grab every source file name and put it in the variable SRC_LIST.
# To use this option, change the ${SRC_FILE} variable in add_executable to ${SRC_LIST}
ADD_EXECUTABLE(${PROJECT_NAME} ${SRC_FILE})
TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${Boost_LIBRARIES})
else()
MESSAGE(FATAL_ERROR "ERROR: Boost libraries not found.")
endif()
###
INSTALL(TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/bin)
# This allows the use of 'make install'. By default, the binary will be installed
# into the bin directory inside the project directory. The destination can be changed
# to the directory of your choice (using absolute path).
# Libraries and headers can be installed in similar ways:
# INSTALL(TARGETS test DESTINATION lib)
# INSTALL(FILES test.h DESTINATION include)
An example "Hello World" program using the Boost libraries is shown in the following example code:
#include <cstdlib>
#include <fstream>
#include <iostream>
using std::ostream;
using std::ofstream;
using std::cout;
#include <boost/iostreams/tee.hpp>
#include <boost/iostreams/stream.hpp>
namespace bio = boost::iostreams;
using bio::tee_device;
using bio::stream;
int main(int argc, char* argv[])
{
typedef tee_device<ostream, ofstream> TeeDevice;
typedef stream<TeeDevice> TeeStream;
ofstream ofs("sample.txt");
// Define an ostream tee which sends output to both cout and ofs
TeeDevice my_tee(cout, ofs);
// Assign the tee to an ostream object.
TeeStream my_split(my_tee);
my_split << "Hello, World!\\n";
my_split.flush();
my_split.close();
exit(EXIT_SUCCESS);
}
Adding Additional C/C++ Source Files as Libraries
Adding additional source files is accomplished similarly to adding external library files. See above.
- All included files must be included in the
SOURCES
list. - All header files must be included in the
HEADER_FILES
list. - Each C/C++ source file must be added as a library before adding the executable.
- Add the executable, including the
${HEADER_FILES}
. - Link the target libraries to the executable.
SET(SOURCES
${PROJECT_SOURCE_DIR}/include/tools.cpp
${PROJECT_SOURCE_DIR}/include/funcs.cpp
)
SET(HEADER_FILES
${PROJECT_SOURCE_DIR}/include/tools.h
${PROJECT_SOURCE_DIR}/include/funcs.h
)
ADD_LIBRARY(tools include/tools.cpp ${HEADER_FILES})
ADD_LIBRARY(funcs include/funcs.cpp ${HEADER_FILES})
ADD_EXECUTABLE(example main.cpp ${HEADER_FILES})
TARGET_LINK_LIBRARIES(main tools funcs)
Cross-Platform Building
If a project is meant to be used on multiple different platforms, it is sometimes necessary to have different options for each platform. These options could be additional C flags, variables to #define
what code is to be run, or various other tasks. The following example shows how to #define
which architecture is being built based on the ARCH
variable that is set by the EMAC toolchain:
if(${ARCH} STREQUAL "x86")
ADD_DEFINITIONS(-DARCH_X86) # The define name will be ARCH_X86
elseif(${ARCH} STREQUAL "arm")
ADD_DEFINITIONS(-DARCH_ARM) # The define name will be ARCH_ARM
elseif(${ARCH} STREQUAL "def")
ADD_DEFINITIONS(-DARCH_DESKTOP) # The define name will be ARCH_DESKTOP
else()
MESSAGE(FATAL_ERROR "ERROR: Not a valid cross-platform option.")
endif()
In the project source code, it is now possible to make some code architecture dependent, as shown in the following example code:
#ifdef ARCH_X86
//Run x86 specific code
#elif defined ARCH_ARM
//Run arm specific code
#elif defined ARCH_DESKTOP
//Run desktop specific code
#else
#error "Unknown platform"
#endif
Conclusion
In this guide, several relatively common, advanced CMake topics were covered. It was demonstrated how to: add different types of library files, add a version number in a config file, and build with cross-platform support.
With the information provided on this page, you are well on your way to having the tools needed for building a large project with CMake. While EMAC fully supports CMake, we are not able to provide the full documentation. Please refer to official or other third-party documentation for more information.
Further Information
Where to Go Next
Pages with Related Content
Some information on this page was provided by the official CMake Tutorial.