A Maven project for the CMake build system. It can be used by including it as a plugin within your Maven
project's pom.xml file.
This repository originally lived on Google Code and was
migrated to GitHub (and Git) after Google Code shut down.
Sample Usage
Generate Goal
<plugin>
<groupId>com.googlecode.cmake-maven-project</groupId>
<artifactId>cmake-maven-plugin</artifactId>
<version>3.23.2-b1</version>
<executions>
<execution>
<id>cmake-generate</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<sourcePath>
<!-- The directory containing CMakeLists -->
</sourcePath>
<targetPath>
<!-- The directory write the project files to -->
</targetPath>
<generator>
<!--
Optional: Overrides the default generator used by cmake.
The list of available values can be found at
https://cmake.org/cmake/help/v3.22/manual/cmake-generators.7.html
-->
</generator>
<environmentVariables>
<!--
Optional: Additional environment variables to expose to cmake. If a variable was already set,
overrides the previous value.
-->
<key>value</key>
</environmentVariables>
<options>
<!--
Optional: One or more options found at https://cmake.org/cmake/help/v3.22/manual/cmake.1.html
For example:
-->
<option>-DBUILD_THIRDPARTY:bool=on</option>
</options>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.googlecode.cmake-maven-project</groupId>
<artifactId>cmake-maven-plugin</artifactId>
<version>3.23.2-b1</version>
<executions>
<execution>
<id>cmake-test</id>
<goals>
<goal>test</goal>
</goals>
<configuration>
<!-- "buildDirectory" is "targetPath" from the "generate" goal -->
<buildDirectory>${project.build.directory}</buildDirectory>
<!-- Optional: do not fail the build on test failures. false by default. -->
<testFailureIgnore>true</testFailureIgnore>
<!-- Optional: skip only ctest tests. false by default. -->
<ctest.skip.tests>true</ctest.skip.tests>
<!-- Optional: Skip all Maven tests. false by default -->
<maven.test.skip>true</maven.test.skip>
<!-- Optional: the number of threads tests should use -->
<threadCount>2</threadCount>
<!-- Optional: dashboard configuration; used with CTestConfig.cmake -->
<dashboard>Experimental</dashboard>
</configuration>
</execution>
</executions>
</plugin>
Examples
The following projects contain examples of how to use this plugin:
By default, Maven will activate the right profile based on your JVM:
windows-x86_64
linux-x86_64
linux-arm_32
mac-x86_64
mac-aarch64
If detection does not work, or you wish to override it then set -P<profile>.
For instance, when building for 64-bit Linux machines, use:
mvn -Plinux-x86_64 install
Using a local CMake installation
Sometimes it is preferable or necessary to use a preexisting CMake installation. cmake.org doesn't provide
binaries for some platforms, such as Raspberry Pi. In such cases, users can install the binaries themselves
(typically using package managers like apt-get) and point the plugin at them.
Set ${cmake.download} to false.
Optionally set ${cmake.dir} to the directory containing the binaries (e.g. /usr/bin). Otherwise, the
plugin will expect the binaries to be on the PATH.
That's it! To learn more about CMake itself, consult the CMake.org website.
请发表评论