Skip to content

tomgey/cmake-modules

This branch is 201 commits behind rpavlik/cmake-modules:main.

Folders and files

NameName
Last commit message
Last commit date
Oct 14, 2010
Oct 14, 2010
Dec 5, 2013
Dec 13, 2010
Dec 13, 2010
Dec 5, 2013
Mar 16, 2012
Feb 18, 2011
Dec 13, 2010
Sep 30, 2013
Mar 20, 2012
Feb 18, 2011
May 17, 2010
Jan 10, 2012
May 8, 2014
Jun 23, 2010
Jun 23, 2010
Jun 23, 2010
Jan 10, 2012
Dec 13, 2010
Dec 13, 2010
Nov 10, 2010
Dec 13, 2010
Aug 30, 2011
Dec 13, 2010
Dec 13, 2010
Dec 13, 2010
Dec 13, 2010
Dec 13, 2010
Oct 18, 2012
Dec 13, 2010
Sep 13, 2013
Jan 26, 2011
Oct 18, 2012
May 17, 2010
May 10, 2012
Dec 13, 2010
Jan 10, 2012
Dec 13, 2010
Oct 18, 2012
Dec 13, 2010
Feb 15, 2013
May 11, 2011
Jan 10, 2012
Dec 12, 2012
Sep 30, 2013
Dec 13, 2010
Jan 10, 2012
Dec 12, 2012
Dec 13, 2010
Oct 14, 2010
Jan 10, 2012
Dec 13, 2010
Dec 13, 2010
May 10, 2012
Jan 3, 2011
Dec 13, 2010
Oct 18, 2012
Sep 30, 2013
Dec 13, 2010
May 10, 2012
May 11, 2011
May 17, 2010
Dec 13, 2010
Dec 12, 2012
Dec 13, 2010
Jan 10, 2012
Dec 13, 2010
Jan 9, 2012
Jan 10, 2012
Feb 15, 2013
Dec 13, 2010
Apr 18, 2012
Dec 12, 2012
Jan 10, 2012
Dec 13, 2010
May 10, 2012
Jan 10, 2012
Dec 13, 2010
Dec 13, 2010
Dec 13, 2010
May 10, 2012
Dec 13, 2010
Oct 18, 2012
Dec 13, 2010
Dec 13, 2010
May 10, 2012
Dec 13, 2010
May 10, 2012
Aug 6, 2013
Feb 18, 2011
Sep 13, 2013
Dec 12, 2012
Mar 16, 2012
Oct 25, 2010
Oct 25, 2010
Dec 13, 2010
Nov 16, 2011
Sep 27, 2013
Dec 5, 2013
Dec 13, 2010
May 28, 2013
May 17, 2010
Nov 16, 2011
Jan 10, 2012
Dec 13, 2010
Dec 13, 2010
Jan 21, 2011
Dec 13, 2010
Sep 9, 2011
Dec 13, 2010
Dec 13, 2010
Dec 13, 2010
Dec 5, 2013
Mar 16, 2012
Dec 13, 2010
Oct 14, 2010
Dec 13, 2010
Dec 13, 2010
Dec 13, 2010
Jan 10, 2012
Dec 13, 2010
Dec 13, 2010
Dec 13, 2010
Jan 10, 2012
Dec 13, 2010
Dec 13, 2010
Feb 15, 2013
Feb 18, 2011
Mar 28, 2011
Dec 13, 2010
Dec 13, 2010
Dec 13, 2010
May 17, 2010
Dec 13, 2010
Dec 13, 2010
Jan 10, 2012
Dec 13, 2010
Dec 13, 2010
Nov 1, 2010
Sep 30, 2013
Sep 30, 2013
Dec 13, 2010

Repository files navigation

VRAC CMake Modules

Ryan Pavlik

rpavlik@iastate.edu abiryan@ryand.net http://academic.cleardefinition.com

Iowa State University HCI Graduate Program/VRAC

Introduction

This is a collection of CMake modules that I've produced during the course of a variety of software development. There are a number of find modules, especially for virtual reality and physical simulation packages, some utility modules of more general interest, and some patches or workarounds for CMake itself.

Each module is generally documented, and depending on how busy I was when I created it, the documentation can be fairly complete.

How to Integrate

These modules are probably best placed wholesale into a "cmake" subdirectory of your project source.

If you use Git, try installing git-subtree (included by default on Git for Windows and perhaps for your Linux distro), so you can easily use this repository for subtree merges, updating simply.

For the initial checkout:

cd projectdir

git subtree add --squash --prefix=cmake git://github.com/rpavlik/cmake-modules.git master

For updates:

cd projectdir

git subtree pull --squash --prefix=cmake git://github.com/rpavlik/cmake-modules.git master

If you use some other version control, you can export a copy of this directory without the git metadata by calling:

./export-to-directory.sh yourprojectdir/cmake

You might also consider exporting to a temp directory and merging changes, since this will not overwrite by default. You can pass -f to overwrite existing files.

How to Use

At the minimum, all you have to do is add a line like this near the top of your root CMakeLists.txt file (but not before your project() call):

list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")

You might also want the extra automatic features/fixes included with the modules, for that, just add another line following the first one:

include(UseBackportedModules)

Look at module-help.html/txt (generated by update-help.sh on a unix-like shell) either in this directory or online at http://github.com/rpavlik/cmake-modules/blob/master/module-help.txt for more information on individual modules.

Licenses

The modules that I wrote myself are all subject to this license:

Copyright Iowa State University 2009-2013

Distributed under the Boost Software License, Version 1.0.

(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

Modules based on those included with CMake are under the OSI-approved BSD license, which is included in each of those modules. A few other modules are modified from other sources - when in doubt, look at the .cmake.

Important License Note!

If you find this file inside of another project, rather at the top-level directory, you're in a separate project that is making use of these modules. That separate project can (and probably does) have its own license specifics.

About

My collection of CMake modules

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 53.7%
  • Graphviz (DOT) 34.6%
  • Shell 7.5%
  • C 4.2%