CMake User Contributed Macros: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Line 33: | Line 33: | ||
[[CMake_User_Contributed_Macros|Back]] | [[CMake_User_Contributed_Macros|Back]] | ||
== Visual Studio generator helpers == | |||
When generating Visual Studio projects, the priorities can be | |||
sometimes different than for other generators. These are some | |||
VS-specific (and sometimes not-so-specific) macros that could | |||
help you generate better VS projects. | |||
#[[CMakeMacroGatherProjectFiles | GatherProjectFiles]] -- create and cache a list of project files by recursively globbing a directory structure | |||
#[[CMakeMacroGenerateProject | GenerateProject]] -- creates a VS project with subgroups that mimic the directory structure | |||
[[CMake|Home]] [[CMake_User_Contributed_Macros|Back]] |
Revision as of 09:17, 22 September 2006
User Contributed Macros
Find Modules
Although CMake comes with a whole bunch of FindXXX packages, there is a large number of packages there are not covered. The hope is that these user-contributed macros will eventually make their way into the official distribution. Before contributing, please have your FindXXX package conform to the CMake Module Guidelines.
- Find Autopack
- Find DirectShow
- Find ParMetis
- Find VLD - Visual Leak Debugger
- Use LaTeX - Build LaTeX Documents
Make Equivalents
While attempting to convert a gnu makefile to Cmake, there was a need to provide some macros to provide equivalent functionality.
Some helpers along the way
- COPY_IF_DIFFERENT
- MERGE --- Merges two sorted lists into a single sorted list. Useful to keep source and header files next to each other.
- CREATE_FINAL_FILE -- create a KDE style final file, which includes all source files, so that the compilation will be noticable faster.
- List Operations -- A compilation of some helpful list operations.
- PARSE_ARGUMENTS -- A macro to help parse arguments for other macros.
Visual Studio generator helpers
When generating Visual Studio projects, the priorities can be sometimes different than for other generators. These are some VS-specific (and sometimes not-so-specific) macros that could help you generate better VS projects.
- GatherProjectFiles -- create and cache a list of project files by recursively globbing a directory structure
- GenerateProject -- creates a VS project with subgroups that mimic the directory structure