/ada4cmake

cmake macros for simple gnat project inclusion

Primary LanguageCMakeGNU General Public License v3.0GPL-3.0

ada4cmake

CMake macros for simple gnat project inclusion

Rationale

gprbuild/gnatbuild/gnatmake are the simplest way of compiling gnat project files, with powerful dependency resolution built-in and binder/linker steps for proper Ada compliancy. Hence, trying to replicate all their features in CMake would be not only a huge task, but a pointless one.

My current workflow for projects in which I have to cooperate with people using CMake boils down to this: provide my Ada code in a library they can link against easily and incorporate into the CMake project with minimal fuss. We all Ada lovers know that cooperation is simpler if we don't need to modify other people's workflow to acommodate our toolchain.

This project addresses a typical debian-family open-source setup, in which native packages are used, meaning standard gcc/g++/gnat.

The two functions here provided allow easy integration of Ada code in such a setup.

Usage

Note: These functions only work for out-of-source building with CMake >= 2.8

In order to make available your Ada code through a library, just include the supplied CMakeAda.cmake file and use the following syntax:

add_ada_library(TARGET GPRFILE RELDIR)
# TARGET is the plain name of the library (e.g., adatest for libadatest.a)
# GPRFILE is the GPR project file that builds the above library
# RELDIR is the relative folder in which gprbuild builds the library (e.g. lib)

and then link with:

add_executable(main main.c)
target_link_libraries(main plainlibname)
# There is no need to make a explicit dependency on the library

For executables built in pure Ada (no C/C++ main file) there is a similar function:

add_ada_executable(TARGET GPRFILE)
# TARGET is the plain name of the executable
# GPRFILE is the GPR project file that builds said executable

See the example folder for details:

cd example
mkdir build
cd build
cmake ..
make